--- title: "Markdown Basic Syntax" description: "This Markdown cheat sheet provides a quick overview of all basic Markdown syntax elements." summary: "This Markdown cheat sheet provides a quick overview of all basic Markdown syntax elements." date: 2023-03-31T12:06:49+02:00 lastmod: 2023-03-31T12:06:49+02:00 draft: false weight: 50 images: ["markdown-guide.jpg"] categories: [] tags: [] contributors: ["Henk Verlinde"] pinned: false homepage: false --- If you need more information about any of these elements, refer to the reference guide for [basic syntax](https://www.markdownguide.org/basic-syntax). ## Heading ```md # H1 ## H2 ### H3 ``` # H1 ## H2 ### H3 ## Bold ```md **bold text** ``` **bold text** ## Italic ```md *italicized text* ``` *italicized text* ## Blockquote ```md > blockquote ``` > blockquote ## Ordered List ```md 1. First item 2. Second item 3. Third item ``` 1. First item 2. Second item 3. Third item ## Unordered List ```md - First item - Second item - Third item ``` - First item - Second item - Third item ## Code ```bash `code` ``` `code` ## Horizontal Rule ```md --- ``` --- ## Link ```md [Markdown Guide](https://www.markdownguide.org) ``` [Markdown Guide](https://www.markdownguide.org) ## Image ```md ![alt text](markdown-guide.jpg) ``` ![alt text](markdown-guide.jpg)