Markdown
Basic Syntax
These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.
Refenced from here: click
| Description | ||
|---|---|---|
### H3 |
||
2. Second 3. Third |
||
- Second - Third |
||
| ` |
||
Extended
SyntaxTable
These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.
ElementMarkdown Syntax[Table](https://www.markdownguide.org/extended-syntax/#tables)`| Syntax | Description |
| ----------- | ----------- |
| Header | Title || Paragraph
| Textcell1 content |` cell2 content |
[Fenced Code Block](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks)Block
```` { "firstName"hello": "John",world" "lastName":} "Smith", "age": 25}````
[Footnote](https://www.markdownguide.org/extended-syntax/#footnotes)Footnote
`Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.`
[Heading ID](https://www.markdownguide.org/extended-syntax/#heading-ids)ID
`### My GreatMyGreate Heading {#custom-id}`
[Definition List](https://www.markdownguide.org/extended-syntax/#definition-lists)List
`term:term definition`
: definition
[Strikethrough](https://www.markdownguide.org/extended-syntax/#strikethrough)Strikethrough
`~~The world is flat.~~`
[Task List](https://www.markdownguide.org/extended-syntax/#task-lists)List
`- [x] Writetask the1 press
release-- [ ] Updatetask2
the
website-
[Emoji
] Contact the media` [Emoji](https://www.markdownguide.org/extended-syntax/#emoji)
(see also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))`That is so funny! :joy:`
[Highlight](https://www.markdownguide.org/extended-syntax/#highlight)Highlight
`I need to highlight these ==veryHighlighted importantContent==
words==.`
Subscript
H2O
[Subscript](https://www.markdownguide.org/extended-syntax/#subscript)Superscript
`H~2~O` [Superscript](https://www.markdownguide.org/extended-syntax/#superscript)`X^2^`
Back to top
These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.
| | Header | Title | | |
|
| ``` |
|
[^1]: This is the footnote. |
|
: definition |
|
| Emoji | |
| Subscript | H |
Back to top