diff options
author | Christian Hodgden <chrhodgden@gmail.com> | 2024-04-05 18:27:15 +0000 |
---|---|---|
committer | Christian Hodgden <chrhodgden@gmail.com> | 2024-04-05 18:27:15 +0000 |
commit | 242f94dabcba4465e1702d4a9894aee76a2fee06 (patch) | |
tree | bf64274ad7a200186ab0d69e5b6cca27231a5287 |
Sharing markdown cheet sheet from markdownguide.org
-rw-r--r-- | markdown-cheat-sheet.md | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/markdown-cheat-sheet.md b/markdown-cheat-sheet.md new file mode 100644 index 0000000..c94cb27 --- /dev/null +++ b/markdown-cheat-sheet.md @@ -0,0 +1,119 @@ +# Markdown Cheat Sheet + +Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)! + +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](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/). + +## Basic Syntax + +These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements. + +### Heading + +# H1 +## H2 +### H3 + +### Bold + +**bold text** + +### Italic + +*italicized text* + +### Blockquote + +> blockquote + +### Ordered List + +1. First item +2. Second item +3. Third item + +### Unordered List + +- First item +- Second item +- Third item + +### Code + +`code` + +### Horizontal Rule + +--- + +### Link + +[Markdown Guide](https://www.markdownguide.org) + +### Image + + + +## Extended Syntax + +These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements. + +### Table + +| Syntax | Description | +| ----------- | ----------- | +| Header | Title | +| Paragraph | Text | + +### Fenced Code Block + +``` +{ + "firstName": "John", + "lastName": "Smith", + "age": 25 +} +``` + +### Footnote + +Here's a sentence with a footnote. [^1] + +[^1]: This is the footnote. + +### Heading ID + +### My Great Heading {#custom-id} + +### Definition List + +term +: definition + +### Strikethrough + +~~The world is flat.~~ + +### Task List + +- [x] Write the press release +- [ ] Update the website +- [ ] Contact the media + +### Emoji + +That is so funny! :joy: + +(See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji)) + +### Highlight + +I need to highlight these ==very important words==. + +### Subscript + +H~2~O + +### Superscript + +X^2^
\ No newline at end of file |