# omd Feature Test This document is designed to test the various features supported by the `omd` Markdown renderer. ## CommonMark Extensions ### Strikethrough This is some text with ~~strikethrough~~. ### Tables | Header 1 | Header 2 | |---|---| | Row 1, Cell 1 | Row 1, Cell 2 | | Row 2, Cell 1 | Row 2, Cell 2 | ### Footnotes This is some text with a footnote.[^1] I hope it doesn't fuck up the formatting. [^1]: This is the footnote content. ### Task Lists - [x] Completed task - [ ] Incomplete task ### Smart Punctuation Here are some examples of smart punctuation: * "Smart" quotes: “This is a quote.” * "Smart" apostrophes: It’s a nice day. * En dashes – like this. * Em dashes — like this. * Ellipsis… ## Other Markdown Features ### Headings # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 ### Emphasis *This is italic text.* **This is bold text.** ***This is bold and italic text.*** ### Blockquotes > This is a blockquote. ### Lists * Unordered list item 1 * Unordered list item 2 1. Ordered list item 1 2. Ordered list item 2 ### Links [Link to Google](https://www.google.com) ### Images ![Alt text](https://images8.alphacoders.com/794/794860.jpg)