Keep this cheatsheet handy while writing on GitHub, blogs, or documentation sites so you can format text without memorizing every syntax detail.
Keep this cheatsheet handy while writing on GitHub, blogs, or documentation sites so you can format text without memorizing every syntax detail.
| Element | Syntax |
|---|---|
| Heading 1 | # Heading 1 |
| Heading 2 | ## Heading 2 |
| Heading 3 | ### Heading 3 |
| Bold | **Bold Text** or __Bold Text__ |
| Italic | *Italic Text* or _Italic Text_ |
| Strikethrough | ~~Strikethrough~~ |
| Blockquote | > Blockquote |
| Ordered List | 1. First item
2. Second item |
| Unordered List | - First item
- Second item |
| Link | [Link Text](URL) |
| Image |  |
| Inline Code | `code` |
| Code Block | ```javascript
console.log("Hello")
``` |
| Horizontal Rule | --- |
| Table | | Header | Header |
| ------ | ------ |
| Cell | Cell | |
| Task List | - [x] Completed task
- [ ] Incomplete task |