Typora Markdown 语法

原文链接: https://www.jianshu.com/p/aad81020f0e6

第一章 块元素(Block Elements)

1.1 段落和行结束(Paragraph and line breaks)

大多数 markdown 解析器忽略单行分隔符,为了上其他 markdown 解析器识别行分隔符,可以在末尾使用两个空格,或者插入

1.2 标题(Headers)

标题有6个等级,用 # 号表示

# 标题1
## 标题2
### 标题3
#### 标题4
##### 标题5
###### 标题6

1.3 引用(Blockquotes)

使用 > 字符,表示引用

> This is a blockquote with two paragraphs. This is first paragraph.
>
> This is second pragraph.Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.



> This is another blockquote with one paragraph. There is three empty line to seperate two blockquote.

This is a blockquote with two paragraphs. This is first paragraph.

This is second pragraph.Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
This is another blockquote with one paragraph. There is three empty line to seperate two blockquote.

1.4 列表(Lists)

输入 * 将会创建一个无序列表,也可以使用 + 或者 -

* Red
* Green
* Blue
  • Red
  • Green
  • Blue

输入 1. 将会创建有序列表

1.  Red
2.  Green
3.  Blue
  1. Red
  2. Green
  3. Blue

1.5 任务列表(Task List)

用 [ ] 或者 [X] 未完成,完成)表示列表,通过点击复选框来更改状态(完成/未完成)

- [ ] a task list item
- [ ] list syntax required
- [ ] normal **formatting**, @mentions, #1234 refs
- [ ] incomplete
- [x] completed

Typora Markdown 语法_第1张图片

1.6 代码块(Code Blocks)

使用 ```<语言> 按回车键,将会对代码进行高亮

​```ruby
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
​```
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html

1.7 数学(Math Blocks)

可以使用MathJax呈现LaTeX数学表达式。

$$
\mathbf{V}_1 \times \mathbf{V}_2 =  \begin{vmatrix} 
\mathbf{i} & \mathbf{j} & \mathbf{k} \\
\frac{\partial X}{\partial u} &  \frac{\partial Y}{\partial u} & 0 \\
\frac{\partial X}{\partial v} &  \frac{\partial Y}{\partial v} & 0 \\
\end{vmatrix}
$$

Typora Markdown 语法_第2张图片

1.8 表格(Tables)

使用 | First Header | Second Header | 按回车键,将会创建2列的表格

| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

还可以使用 : 号,来设置文字对齐方式

| Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |
Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

1.9 脚注(Footnotes)

使用 [^footnote] 创建脚注.
[^footnote]: Here is the *text* of the **footnote**.
然后,可以把鼠标停留在脚注中,查看内容

You can create footnotes like this[1].

生产环境,可以像这样使用
You can create footnotes like this[^1].
[^1]: Here is the *text* of the **footnote**.

You can create footnotes like this[2].

1.10 横线(Horizontal Rules)

输入 *** 或者 — 后,按回车键

---

1.11 目录(Table of Contents – TOC)

输入 [toc] ,按回车键

Typora Markdown 语法_第3张图片


第二章 Span 元素(Span Elements)

2.1 链接(Links)

文字描述包含在 [] 内,链接地址包含在 () 内,() 要紧接着 [] 后面

This is [an example](http://example.com/ "Title") inline link.
[This link](http://example.net/) has no title attribute.

This is an example inline link.

This link has no title attribute.

2.1.1 引用链接(Reference Links)

引用链接样式,使用两个 []

This is [an example][id] reference-style link.

Then, anywhere in the document, you define your link label like this, on a line by itself:

[id]: http://example.com/  "Optional Title Here"

This is an example reference-style link.
Then, anywhere in the document, you define your link label like this, on a line by itself:

Type 简化了使用方法,如下

[Bing][]
And then define the link:

[Bing]: http://bing.com/

Bing
And then define the link:

2.2 图片(Images)

在链接格式前面添加 ! ,如下

![timg.jpg](https://upload-images.jianshu.io/upload_images/6226097-1613f3353bb9ec89.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

Typora Markdown 语法_第4张图片

2.3 强调(Emphasis)

对应 HTML 的 标签

*single asterisks*

_single underscores_

single asterisks
single underscores

如果像使用 * 号,在 * 号前使用 \

\*this text is surrounded by literal asterisks\*

this text is surrounded by literal asterisks

2.4 加粗(Strong)

**double asterisks**

__double underscores__

double asterisks
double underscores

2.5 代码(Code)

在文章中现实代码,用 ` 号表示

Use the `printf()` function.

Use the printf() function.

2.6 删除线(Strikethrough)

~~Mistaken text.~~ 

Mistaken text.

2.7 下划线(Underlines)

下划线由 HTML 提供

Underline

img

2.8 Emoji 表情(Emoji)

用两个 : 号包含单词,或者在 编辑 -> 表情与符号 中选择

:happy:

img

2.8Emoji.png

2.9 内联数学(Inline Math)

这个功能默认是关闭的,如果要打开这个功能(以 Mac 版本为例),选择 Typora -> 偏好设置 -> markdown 标签,勾选内联公式复选框

$\lim_{x \to \infty} \exp(-x) = 0$

下面是简书风格,typora 与之类似
[外链图片转存失败(img-ob3ypFvY-1566353506163)(https://math.jianshu.com/math?formula=%5Clim_%7Bx%20%5Cto%20%5Cinfty%7D%20%5Cexp(-x)]%20%3D%200)

2.10 下表(subscript)

这个功能默认是关闭的,如果要打开这个功能(以 Mac 版本为例),选择 Typora -> 偏好设置 -> markdown 标签,勾选下标复选框

H~2~O

H2O

2.11 上标(Superscript)

这个功能默认是关闭的,如果要打开这个功能(以 Mac 版本为例),选择 Typora -> 偏好设置 -> markdown 标签,勾选上标复选框

X^2^

X2

2.12 高亮(Highlight)

这个功能默认是关闭的,如果要打开这个功能(以 Mac 版本为例),选择 Typora -> 偏好设置 -> markdown 标签,勾选高亮复选框

==highlight==

img

2.12高亮.png


第三章 HTML

可以使用 HTML 样式来写 Markdown,比如

this text is red

img

3.1嵌入内容.png

3.1 嵌入内容(Embed Contents)


Typora Markdown 语法_第5张图片

3.2 视频(Video)


附录 A 官方文档

Typora 官方文档

附录 B Markdown 文档

简书 Markdown 语法


你可能感兴趣的:(工具)