--- 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
That is so funny! :joy: