# Markdown Examples This page demonstrates some of the built-in markdown extensions provided by VitePress. ## Custom Containers ::: info This is an info box. ::: ::: tip This is a tip. ::: ::: warning This is a warning. ::: ::: danger This is a dangerous warning. ::: ::: details Click to expand This is a details container. ::: ## Tables | Header 1 | Header 2 | | -------- | -------- | | Item 1 | Item 2 | ## Checklists - [x] Item 1 - [ ] Item 2 ## Customizing Code Blocks ```js {1,4-5} // line 1 is highlighted const x = 1 const y = 2 // lines 4-5 are highlighted const z = 3 ```