Markdown: Writing Content#
Note
The content in this tutorial is from Markdown CheatSheet by Matt Cone.
Overview#
This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.
Basic Syntax#
These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.
Element |
Markdown Syntax |
|---|---|
Heading |
|
Bold |
|
Italic |
|
Blockquote |
|
Ordered List |
|
Unordered List |
|
Code |
|
Horizontal Rule |
|
Link |
|
Image |
|
Extended Syntax#
These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.
Element |
Markdown Syntax |
|---|---|
Table |
|
Fenced Code Block |
```{ |
Footnote |
|
Heading ID |
|
Definition List |
Term 1 |
Strikethrough |
|
Task List |
|
Emoji |
|
Highlight |
|
Subscript |
|
Superscript |
|