Markdown Cheat-sheet

Markdown Cheat-sheet

Markdown is plain text formatting markup language that is used to add formatted elements to plain text files. It is a very helpful tool web developers, it's common use is to create beautiful and creative "README" files for our projects.

Following are the some of the most commonly used markdown syntaxes and their results.

  • Heading

# Heading1
## Heading2
### Heading3

Result:

Heading1

Heading2

Heading3

  • Text

    **bold text**
    *italicized text*
    > blockquote
    
    bold text

italicized text

blockquote

  • List

Ordered List

1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item

Unordered List

- First item
- Second item
- Third item
  • First item
  • Second item
  • Third item

  • Code

`code`

code

  • Line

---

[title](https://www.example.com)

title

  • Image

![alt text](image.jpg)

alt text