--- 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

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 {{< callout icon="info-circle" >}} Copy the emoji shortcode from [Emoji Cheat Sheet](https://www.webfx.com/tools/emoji-cheat-sheet/) by clicking on the emoji. {{< /callout >}}
That is so funny! :joy:
That is so funny! :joy: ## Unsupported elements {{< callout icon="info-circle" >}} Hugo does not [support](https://www.markdownguide.org/tools/hugo/#hugo-markdown-support) the highlight, subscript, and superscript elements. Use the HTML element itself instead. {{< /callout >}} ### Highlight ```md I need to highlight these very important words. ``` I need to highlight these very important words. ### Subscript ```md H2O ``` H2O ### Superscript ```md X2 ``` X2