Markdown Cheat Sheet for Beginners and Experts

There are many Markdown editing applications and you can even use Markdown in Microsoft Word.

Markdown is an easy-to-learn markup language used to format plain text documents. Even if you have no experience with the language, Markdown is so simple that you can learn it in less than 10 minutes.

For example, if you want to make a word appear in italics, just surround it with asterisks (e.g. *test* becomes test ). This also works for entire sentences or even paragraphs. If you want to create a bulleted list, just start each line with a hyphen. Simple, right?

There are a lot of Markdown editing apps out there, and you can even use Markdown in Microsoft Word. Check out the Markdown cheat sheet below for a quick overview of what you can do with it.

Cheat sheet Markdown

Format Type

Markdown Syntax

Basic elements

Heading H1 to H6

# Heading Text ## Heading Text ### Heading Text #### Heading Text ##### Heading Text ###### Heading Text

Italic

*This text is italicized*

Bold

**This text is bold**

Quote

> Các đoạn trích dẫn phải có > một dấu ngoặc nhọn mũi tên phải ở đầu > cho từng dòng. > > Sử dụng một dòng trống cho nhiều đoạn văn.

Unordered list

- Mục danh sách dấu đầu dòng - Mục danh sách dấu đầu dòng - Mục danh sách dấu đầu dòng - Sử dụng thụt lề hai khoảng trắng cho các danh sách lồng nhau

Ordered list

1. Mục danh sách dấu đầu dòng 2. Mục danh sách dấu đầu dòng 3. Mục danh sách dấu đầu dòng 1. Danh sách có thứ tự cũng có thể lồng vào nhau

Mixed List

1. Bạn có thể kết hợp các loại danh sách không? - Có thể!

Horizontal

--- *** ___ Note: Can be three hyphens, asterisks, or underscores.

Hyperlink

Đây là [ví dụ liên kết]( https :// www . makeuseof . com )

Image

![Alt Text]( http :// example . com / image / path . png )

Skip Markdown

Thêm tiền tố *dấu gạch chéo ngược* vào các ký tự Markdown để bỏ qua định dạng.

 

Extended elements

Code (inline)

`Đây là code nội tuyến`

Code (Block)

``` Đây là một block code Nó hỗ trợ nhiều dòng ```

Dash

~~Văn bản này đã bị gạch bỏ~~

Hard line breaks

Đây là một số văn bản Văn bản này là một dòng mới, không phải là một đoạn văn mới

Board

| Header thứ 1 | Header thứ 2 | | ------------ | ------------- | | Ô nội dung 1 | Ô nội dung 2 | | Cột nội dung 1 | Cột nội dung 2 |

Note: A blank line is required before.

Task List

- [x] Mục nhiệm vụ đã hoàn thành - [ ] Mục nhiệm vụ chưa hoàn thành - [ ] (Tùy chọn) Đánh dấu dấu ngoặc đơn để bỏ qua

Mention

Bạn có thể đề cập đến @users và @teams trên GitHub. Chủ yếu hữu ích khi gửi hoặc bình luận về lỗi và sự cố.

Emoji

:emojicode: Note : Emoji codes can be found in the emoji cheat sheet.

 

Note : Almost all versions of Markdown support basic elements, but extended elements are only supported by more advanced forms of Markdown, including CommonMark and GitHub Flavored Markdown.

What is the Markdown Flavor version?

The original Markdown specification was released in 2004. However, despite its innovation, many users felt that the original Markdown's feature set was too limited for anything more than simple document formatting.

As more websites adopted Markdown as their preferred method of entering text (e.g. blog posts, comments, forum posts, etc.), they began adding and supporting their own Markdown markup components. Notable sites include Reddit, GitHub, Stack Exchange, etc.

Eventually, users began pushing for a standardized set of formatting elements, leading to the creation of even more versions of Markdown such as CommonMark, MultiMarkdown, Markdown Extra, GitHub Flavored Markdown, etc.

In short, once you learn the basic elements outlined in the original Markdown specification, you should be able to pick up any other version of Markdown with ease. The variations are subtle and are often only useful in very specific use cases.

If you're still looking for a markdown editor, try Typora or a productivity tool like Notion.

4 ★ | 1 Vote