--- title: "Markdown examples" layout: post --- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida. Duis ac tellus et risus vulputate vehicula. Donec lobortis risus a elit. ## Heading Two (h2) ### Heading Three (h3) #### Heading Four (h4) ##### Heading Five (h5) ###### Heading Six (h6) ## Blockquotes ### Single line > My mom always said life was like a box of chocolates. You never know what you're gonna get. ### Multiline > What do you get when you cross an insomniac, an unwilling agnostic and a dyslexic? > > You get someone who stays up all night torturing himself mentally over the question of whether or not there's a dog. > > – _Hal Incandenza_ ## Horizontal Rule --- ## Table | Title 1 | Title 2 | Title 3 | Title 4 | |------------------|------------------|-----------------|-----------------| | First entry | Second entry | Third entry | Fourth entry | | Fifth entry | Sixth entry | Seventh entry | Eight entry | | Ninth entry | Tenth entry | Eleventh entry | Twelfth entry | | Thirteenth entry | Fourteenth entry | Fifteenth entry | Sixteenth entry | ## Code Source code can be included by fencing the code with three backticks. Syntax highlighting works automatically when specifying the language after the backticks. ```` ```javascript function foo () { return "bar"; } ``` ```` This would be rendered as: ```javascript function foo () { return "bar"; } ``` ## Lists ### Unordered * First item * Second item * Third item * First nested item * Second nested item ### Ordered 1. First item 2. Second item 3. Third item 1. First nested item 2. Second nested item