Markdown个人笔记

2018-07-09  本文已影响0人  ZAdonai

title: Markdown

[TOC]

HEAD

From Level 1 to 6

# Level 1
OR
LeveL 1
=======

## Level 2
OR
Level 2
-------

### Level 3
#### Level 4
##### Level 5
###### Level 6

*Warning: There is always a SPACE behind a PUNCTUATION


LIST

Bullet List

* Apple
* Orange
* Pear

Numbered List

1. Wash
2. Rinse
3. Repeat

LINK

Web Link

Normal Link
[Name](URL)

Image Link
![Name](URL)

Tips: Name is NOT necessary, which also can be empty

Reference

Normal Reference
< It's a reference text

Nested reference
< Outer refer
<< Inner refer

Code

Single line
`Hello World`

Multi Lines
​```Code Type
Code Here
​```

TEXT ATTRIBUTE

Bold type
**text here**   OR  __text__

Italic
_text_  OR  *text*

Monospace
`text`

Underline(Maybe NOT support)
~~text~~

Horizontal Rule
--- OR ***

Two spaces or more at the end of a line produces a line break, otherwise line break will be ruled by dispaly

FORM

dog | bird | cat
----|------|----
foo | foo  | foo
bar | bar  | bar
baz | baz  | baz

上一篇 下一篇

猜你喜欢

热点阅读