--- title: Markdown Demo tags: - reference compartir: true lastmod: 2023-09-18 --- # H1 Heading 1 ## H2 Heading 2 ### H3 Heading 3 #### H4 Heading 4 ##### H5 Heading 5 ###### H6 Heading 6 ## Text Formatting Text can be **bold**, _italic_, or ~~strikethrough~~. You can [link](https://example.dom/) to external pages. and other internal [[Markdown|links]]. ## Lists * Item 1 * Item 2 * Nested item * Item 3 1. Line item 2. Line item 1. Nested item 3. Line item ## Blockquote > ## This is a header. > 1. This is the first list item. > 2. This is the second list item. > > Here's some example code: > > Markdown.generate(); ## Code ### Inline Code Let us use some `inline code` and check out how it `looks`. Here's some `more`. ### Code Blocks ```html
``` ```css .niceClass { color: blue; background-color: #fff; } ``` ```js // Javascript code with syntax highlighting. var fun = function lang(l) { dateformat.i18n = require('./lang/' + l) return true; } ``` ## Tables |head one|head two|head three| |---|---|---| |ok|good swedish fish|nice| |out of stock|good and plenty|nice| |ok|good `oreos`|hmm| |ok|good `zoute` drop|yumm| ## Horizontal Rule --- ## Tasks and Todos - [ ] Pending Task - [x] Completed Task * [-] Won't Do Task * [/] In Progress Task * [*] You are a star. * [!] Exclamation Mark! * [?] Question Mark? * [<] Scheduled Task * [>] Forwarded Task ## Images 