Markdown Code Snippets
Markdown is a lightweight markup language that enables you to write content for the web quickly and easily. It’s easy to learn, and you can use it to create beautiful and engaging content. Markdown was created by John Gruber in collaboration with Aaron Swartz, and first released in 2004. The first markdown-to-HTML converter was written by Gruber in Perl. It has since become a popular way to write content for the web.
Markdown works by enabling you to write in a simple, plain text format. This text is then converted into HTML, which is the code that is used to display content on the web. This makes it quick and easy to write content for the web without having to learn HTML.
Markdown is a great way to write content for the web because it’s easy to learn and use, and it makes your content look great. It’s also a great way to write content for the web if you don’t know HTML.
In this article, we’ll be looking at all markdown code snippets that you can use in any markdown editor.
Type
*Italic*
_Italic_
Result
Italic
Type
**Bold**
_Bold_
Result
Bold
Type
# Heading 1
Heading 1
=========
Result
Heading 1
Type
## Heading 2
Heading 2
———
Result
Heading 2
Type
[Website](https://tleapps.com)
[Website][1]
⋮
[1]: https://tleapps.com
Result
Type
![Image](https://tleapps.com/wp-content/uploads/2022/02/sword_blue2.png)
![Image][1]
⋮
[1]: https://tleapps.com/wp-content/uploads/2022/02/sword_blue2.png
Result
Type
> Blockquote content
Result
Blockquote content
Type
* Unordered List Item 1
* Unordered List Item 2
* Unordered List Item 3
* Unordered List Item 4
– Unordered List Item 1
– Unordered List Item 2
– Unordered List Item 3
– Unordered List Item 4
Result
- Unordered List Item 1
- Unordered List Item 2
- Unordered List Item 3
- Unordered List Item 4
Type
1. Ordered List Item 1
2. Ordered List Item 2
3. Ordered List Item 3
4. Ordered List Item 4
Result
- Ordered List Item 1
- Ordered List Item 2
- Ordered List Item 3
- Ordered List Item 4
Type
Horizontal divider
—
Horizontal divider
***
Result
Horizontal divider
Type
`Inline code`
Result
Inline code
Type
` ` `
# code
3 backticks without spaces
4 dots
` ` `
····# code
····3 backticks without spaces
····4 dots
Result
# code
3 backticks without spaces
4 dots