轻松记录您
灵感和创意

Typora简介及Markdown语法精讲

这篇文章简单介绍Typora这款Markdown语法编辑器,以及精讲它支持的Markdown语法。

Typora

Typora的官网是https://www.typora.io/,里面有详尽的介绍和展示,下面我摘取一些片段介绍一下该编辑器的特性。

用它进行Markdown文件的阅读和写作可以用“美”字来形容,具体体现在三大体验感中:

自由随心

实时无缝预览

所见即所得

喜欢它,因为它简约又强大。下面看下它的一些特性——

插入图片

Images

生成标题

Headers

生成列表

Lists

表格

Tables

代码块

Code Fences

数学公式

Math

图解

Diagrams

行内样式

Inline Style

除此之外,它可以方便地管理md文件,在文章标题间快速跳转,支持YAML头信息,导入和输出成通用的文件格式。

管理文件

导入和导出

还有大量我完全没用过的特性,像支持其他插件进行扩展、修改主题、自动匹配等等。关键是开发团队还在不断地维护和开发这个软件,并且我们可以免费使用它。我之前也用过不少的Markdown语法编辑器,这个是我一用上就离不开的,无论是在Windows上还是Ubuntu上,我都可以用它进行快速流畅的文档创作(当然它也支持Mac)。

它对英文字体支持非常棒,看起来很舒服。可惜在Windows上对中文字体的显示不太友好,看起来有点丑。好像可以更换字体,不过没有尝试过。

Markdown

之前推荐过Markdwon的语法介绍,像我在Github上fork的https://github.com/ShixiangWang/README。当然百度也能搜出大量的该语法介绍。这里我想根据Typora官方提供的Markdown参考精讲一下它支持的语法特性。

块元素

段落和换行符

Markdown源码中需要多个空行才能重启一段,Typora中只需要按下Enter键即可。

按下Shift+Enter键会创建一个单个换行符,但是大多数Markdown语法解析器都会忽略它。我们可以通过在一行的末尾加两个空格键,或者插入

标题

在一行的开始加1-6个井号键,对应着文章的1-6级标题。

# 这是一级标题

## 这是二级标题

###### 这是六级标题

一般建议标题不要超过三级,不然可能层级太多影响阅读。

引用

Markdown用>代表引用,格式看起来如下:

> 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 a blockquote with two paragraphs. This is first paragraph.

This is second pragraph.Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

列表

*和+,-三种字符都能用来创建无序列表,但最好不要混用。有序列表用数字加.号即可创建。

## un-ordered list

*   Red

*   Green

*   Blue

## ordered list

1.  Red

2.  Green

3.  Blue

un-ordered list

Red

Green

Blue

ordered list

Red

Green

3.Blue

任务列表

任务列表用[]或[x]标记(未完成或完成)。、

– [ ] a task list item

– [ ] list syntax required

– [ ] normal **formatting**, @mentions, #1234 refs

– [ ] incomplete

– [x] completed

[ ] a task list item

[ ] list syntax required

[ ] normal formatting, @mentions, #1234 refs

[ ] incomplete

[x] completed

在Typora中直接可以点击来修改任务完成的状态。

代码块

Typora只支持Github的Markdown语法,对源代码块(Markdown有不同的种类,所以有些地方不太一样)不支持。

Typora中只需要键入并按下Enter键就可以输入代码块了。在后面可以加上你使用的语言名。Typora会自动进行语法高亮。

Here’s an example:


function test() {

console.log("notice the blank line before this function?");

}

syntax highlighting:


require 'redcarpet'

<strong>Markdown</strong> = Redcarpet.new("Hello World!")

puts <strong>Markdown</strong>.to_html

function test() {

console.log(“notice the blank line before this function?”);

}

语法高亮:

require ‘redcarpet’

Markdown = Redcarpet.new(“Hello World!”)

puts Markdown.to_html

数学公式块

我们可以使用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}

$$

比如我们如果要生成如上公式,需要输入

$$

\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}

$$

表格

输入 | First Header | Second Header | 并按下 Enter 键会返回两列的表。

一旦表格生成,我们可以像使用Excel一样对表格进行对齐、添加、修改、删除操作。

本身的源代码是这样的:

| 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

脚注

You can create footnotes like this[^footnote].

[^footnote]: Here is the *text* of the **footnote**.

第一行是文本,第二行是对标记字符进行解释。当把鼠标指向脚注时,会看到解释内容。

You can create footnotes like this[1].

水平线

有时候我们想要水平线来进行文本内容分割,可以在空白行上使用***或者—然后按下回车键即可。

YAML头信息

Typora支持YAML头信息,一般网页需要写这个。在文档的开始键入—然后按下回车键就会生成一个独立的区块可以写入YAML头信息。

目录

输入[toc]并按下回车键会自动生成文章目录(这个在Github和简书上好像都不支持)。

图解

不翻译了,拷贝。

Typora supports, sequence, flowchart and mermaid, after this feature is enabled from preference panel.

See this document for detail.

Span元素

链接

Markdown支持两种格式的链接:行内链接和参考链接。

两种链接中,文本信息都用[]限定。

常用的就是行内链接了,平常我们点击网址,然后浏览器会自动跳转并打开就属于这种。

它又分为有标题的和没标题的:

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.

内部链接

我们可以把链接指向文本的某个标题,这样就能够实现文章内部的跳转,像书签一样。

这个功能我没太摸清楚,参考的Markdown文章中是能用的。有兴趣的可以看下,在下方留评。

参考链接

两个[],第一个写文本信息,第二个写链接ID。

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:

这就像写文章的参考文献一样。

有趣的是第二个方括号内内容可以省略,第一个方括号内内容会当作ID使用。

[Google][]

And then define the link:

[Google]: http://google.com/

Google

And then define the link:

URLs

直接用<>可以插入网址。

<I@TYPORA.IO>becomes i@typora.io.</I@TYPORA.IO>

图片

插入图片与插入链接相似,不过要在最前面加!做区别。

![](/path/to/img.jpg)

# 左边是图片标题,右边是地址,可以是url,也可以是本地的图片地址(注意绝对路径和相对路径的区别,可以在Typora中设定)

![](/path/to/img.jpg “Optional title”)

比如我在文章最前面插的那些图片:

![Images](http://upload-images.jianshu.io/upload_images/3884693-785fb767b4bead65.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

效果就是

Images

强调

有时候我们需要对文本进行强调,方式是斜体。可以用*或_分隔要强调的文本。

*single asterisks*

_single underscores_

输出:

single asterisks

single underscores

它们是可以和引用,以及后面讲的加粗连用的。

如果我们需要输出*键,可以用\进行转义。

加粗

强调用一个符号,加粗用两个。

**double asterisks**

__double underscores__

double asterisks

double underscores

Markdown一般都推荐使用*作为分隔符。

代码

加入行内代码,只需要用分隔即可。 Use the () function. Use the printf() function. 删除线 文本前后用两个~符号: ~~Mistaken text.~~ becomes Mistaken text. 下划线 跟HTML语法一样。 Underline becomes <span style="text-decoration: underline;">Underline</span>. 表情:happy: 插入笑脸用:smile,得到:smile: 还有其他一些标签,键入:会根据后面的英文字符查找相关表情。 比如:cry:,:cry: 遵循这样的规则使用即可。 HTML Typora只支持有限的HTML语法,如下,我就不翻译了。 Typora cannot render html fragments. But typora can parse and render very limited HTML fragments, as an extension of <strong>Markdown</strong>, including: Underline: underline Image: ![](http://www.w3.org/html/logo/img/mark-word-icon.png) (And width, height attribute in HTML tag, and width, height, zoom style in style attribute will be applied.) Comments: `

Hyperlink: link.

Most of their attributes, styles, or classes will be ignored. For other tags, typora will render them as raw HTML snippets.

But those HTML will be exported on print or export.

行内数学公式

前面提到了,这里举个例子。

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

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

同样的公式,我用$$分隔就会变成:

$$

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

$$

可以看到显示效果的不同哈。

下标

用一个~,如果要写水分子,我们可以使用H~2~O,它就会变成H2O.

这个功能默认没打开,To use this feature, first, please enable it in Preference Panel -> Markdown Tab.

现在看看H2O。

上标

用一个^前后分隔。

X的平方可以表示为X^2^,即X2 。

高亮

用两个==在前后分隔对文本高亮。

==highlight==会变成

==highlight==

未经允许不得转载:坚果之云 Markdown » Typora简介及Markdown语法精讲
分享到: 更多 (0)

坚果云Markdown轻松记录您 灵感和创意

坚果云Markdown下载坚果云Markdown介绍