--- title: "Markdown Extended Syntax" description: "This Markdown cheat sheet provides a quick overview of all extended Markdown syntax elements." summary: "This Markdown cheat sheet provides a quick overview of all extended Markdown syntax elements." date: 2023-03-31T12:07:15+02:00 lastmod: 2023-03-31T12:07:15+02:00 draft: false weight: 50 images: [] categories: [] tags: [] contributors: ["Henk Verlinde"] pinned: false homepage: false --- If you need more information about any of these elements, refer to the reference guide for [extended syntax](https://www.markdownguide.org/extended-syntax). ## Table ```md | Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text | {.table .table-striped} ``` | Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text | {.table .table-striped} ## Fenced Code Block ````md ```json { "firstName": "John", "lastName": "Smith", "age": 25 } ``` ```` ```json { "firstName": "John", "lastName": "Smith", "age": 25 } ``` ## Footnote ```md Here's a sentence with a footnote. [^1] [^1]: This is the footnote. ``` Here's a sentence with a footnote. [^1] [^1]: This is the footnote. ## Heading ID ```md ### My Great Heading{#custom-id} ``` ### My Great Heading{#custom-id} ```html

My Great Heading

``` ## Definition List ```md term : definition ``` term : definition ## Strikethrough ```md ~~The world is flat.~~ ``` ~~The world is flat.~~ ## Task List ```md - [x] Write the press release - [ ] Update the website - [ ] Contact the media {.list-unstyled} ``` - [x] Write the press release - [ ] Update the website - [ ] Contact the media {.list-unstyled} ## Emoji
That is so funny! :joy:
That is so funny! :joy: (See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji)) ## Highlight ```md I need to highlight these very important words. ``` I need to highlight these very important words. (See also [Hugo Markdown Support](https://www.markdownguide.org/tools/hugo/#hugo-markdown-support)) ## Subscript ```md H2O ``` H2O (See also [Hugo Markdown Support](https://www.markdownguide.org/tools/hugo/#hugo-markdown-support)) ## Superscript ```md X2 ``` X2 (See also [Hugo Markdown Support](https://www.markdownguide.org/tools/hugo/#hugo-markdown-support))