About the Markdown Preview
What is Markdown?
Markdown is a lightweight markup language for creating formatted text using a plain-text editor. Created by John Gruber in 2004, it has become the de facto standard for technical writing, widely used on GitHub, in technical blogs, and for documentation generation.
Markdown Syntax Reference
| Element | Syntax |
|---|---|
| Heading | # H1, ## H2, ### H3 |
| Bold | **bold text** |
| Italic | *italic text* |
| Strikethrough | ~~strikethrough~~ |
| Inline Code | `code` |
| Code Block | ```language ... ``` |
| Unordered List | - Item |
| Ordered List | 1. Item |
| Link | [text](URL) |
| Image |  |
| Blockquote | > text |
| Table | | Col1 | Col2 | ... | |-----|-----|-----| |
| Horizontal Rule | --- |
| Task List | - [x] Done - [ ] Todo |