Markdown

Lesson 1: Markdown Cheat Sheet

Markdown

  • Markdown: A plain text format for writing structured documents

CheatSheet

1. headings

# H1
## H2
### H3
#### H4
##### H5
###### H6

H1

H2

H3

H4

H5
H6

2. emphasis

**BOLD**
*Italic*
***BOLD and Italic***

BOLD

Italic

BOLD and Italic

3. list

  • unordered
- A
- A
	- A
		- A
  • A
  • A
    • A
      • A
  • ordered
1. A
1. A
	1. A
	1. B
		1. A
1. A
  1. A
  2. A
    1. A
    2. B
      1. A
  3. A

4. images

![IMAGE](image.png "title")
 
![URLImage](URL)

IMAGE

MYIG

[](url) 


<http://url> 

IG

https://www.instagram.com/emily_daily_/

6. blockquotes

> YOLO

> blockquotes
>
> with **multiple** Paragraphs

YOLO

Blockquotes

with multiple Paragraphs

7. code

```(language)
System.out.println("Hello JAVA");
```
System.out.println("Hello JAVA");
print("Hello Python")

refer to this website Markdown CheatSheet.

Eun-young's profile image

Eun-young

2019-04-29 13:00

Read more posts by this author