Markdown 学习笔记

推荐工具

Visual Studio Code

插件 介绍
Markdown PDF 输出成PDF文档
Markdown All in One 快捷键,目录,预览功能
markdownlint 检查编写规范

标题

# Headline 1

## Headlines 2

### Headlines 3

#### Headlines 4

##### Headlines 5

###### Headlines 6

Headline 1

Headlines 2

Headlines 3

Headlines 4

Headlines 5
Headlines 6

字体格式

paragraphs 
*Italic* _Italic_  
**bold** __bold__
***Both*** ___Both___

paragraphs
Italic Italic
bold bold
Both Both


BlockQuote

> hello  
> it's me

hello
it's me

Horizontal Rule

___

---

***




Lists

Number Lists

1. a  
2. b
3. c
    1. d
  1. a
  2. b
  3. c
    1. d

Bulleted Lists

* Item
* Item
  * Item
    * Item

1. Item A
    * item
2. Item B
    * item
  • Item
  • Item
    • Item
      • Item
  1. Item A
    • item
  2. Item B
    • item

Code


`npm install shaddock`

```JavaScript
 console.log('test');

npm install shaddock

 console.log('test');

Form

|A|B|C|
| - | - | - |
| 1 | `输出成PDF文档` | Q |
| 2 | `快捷键,目录,预览功能`| W |
| 3 | `检查编写规范`| E |
A B C
1 输出成PDF文档 Q
2 快捷键,目录,预览功能 W
3 检查编写规范 E

Links

[Google](https://google.com)  
[Google](https://google.com "Link To Google")

Google
Google

Link With Image

[Google](https://google.com)  
[Google](https://google.com "Link To Google")

Google

Cat

Cat


你可能感兴趣的:(Markdown 学习笔记)