Markdown Cheatsheet
A quick-reference guide for standard Markdown and GitHub Flavored Markdown (GFM) formatting, covering headings, tables, task lists, code blocks, and alert callouts. ## Basic Syntax ```markdown # Heading 1 (H1) ## Heading 2 (H2) ### Heading 3 (H3) #### Heading 4 (H4) **Bold Text** or __Bold Text__ *Italic Text* or _Italic Text_ ***Bold and Italic*** - Unordered List Item 1 - Unordered List Item 2 - Nested Unordered Item (indent 2 spaces) 1. Ordered List Item 1 2. Ordered List Item 2 1. Nested Ordered Item (indent 3 spaces) [Display Text](https://yoraba.com)  > This is a blockquote. > It can span multiple lines. --- Escaping characters: \*this is not italic\* ``` ## Tables Configure tables with header columns, custom alignments, and cell values. ```markdown | Header Left | Header Center | Header Right | | :--- | :---: | ---: | | Align Left | Align Center | Align Right | | Cell 1 | Cell 2 | Cell 3 | ``` ## Task Lists Task lists render interactive or static checklists (commonly supported in GFM). ```markdown - [ ] Incomplete task item - [x] Completed task item ``` ## Code Blocks Fenced code blocks support syntax highlighting by writing the language identifier next to the opening backticks. ````markdown Inline code uses `single backticks` like this. Fenced code blocks use triple backticks: ```javascript const greet = () => console.log("Hello World"); greet(); ``` ```htmlStatic markup