--- title: "Markdown Extended Syntax" description: "A quick reference to the Markdown extended syntax." summary: "A quick reference to the Markdown extended syntax." date: 2023-05-12T16:35:56+02:00 lastmod: 2023-05-12T16:35:56+02:00 draft: false images: [] menu: docs: parent: "" identifier: "markdown-extended-syntax-f467db1a842b35cffcbd916e2e6a56bc" weight: 220 toc: true --- A quick reference to the Markdown extended syntax. { .lead } {{< callout icon="info-circle" >}} Refer to the [extended syntax](https://www.markdownguide.org/extended-syntax) reference guide for more information. {{< /callout >}} ## Table ```md | Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text | ``` | Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text | ## 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: