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


©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Contents 前言行文常用语法标题强调列表引用代码分割线其他基本语法表格图像链接公式反斜线脚注结语 Intro...
    流沙河老船长阅读 10,547评论 1 18
  • 为什么学习Markdown 自从搭建了 Hexo 博客之后,发现还有 Markdown 这种写文章的方法,想到以后...
    lifeColder阅读 20,210评论 10 216
  • task 1 bold italic h1 h2 h6 item 1 item 2 item 3item aite...
    RudyHe阅读 582评论 0 51
  • 简介 Markdown是一种可以使用普通文本编辑器编写的标记语言,通过类似HTML的标记语法,它可以使普通文本内容...
    cd2016阅读 549评论 0 2
  • 1 区块元素 1.1 段落 一个 Markdown 段落是由一个或多个连续的文本行组成,它的前后要有一个以上的空行...
    markouy阅读 972评论 0 0