Markdown 可以显著提高写作效率,而这个博客的博文又需要使用 Markdown 来写,所以总结和记录 Markdown 的使用就十分必要了。
Markdown 是什么?
Markdown 是一种文本样式语言。
- 文本样式就是,在 word 文档里,可以设置的一切格式(加粗、斜体、表格、插入图片…)
- 语言是指 Markdown 可以完全通过文字设置文本样式,完全不需要鼠标操作(比如:
**要加粗的文字**
,在文章中在需要加粗的文字前后加上**
,文字就会被加粗处理
Markdown is a lightweight and easy-to-use syntax for styling all forms of writing on the GitHub platform.
原理
在记事本里写上**要加粗的文字**
,文字会不会被加粗呢?显然不会。既然 Markdown 是一种文本样式语言,就要有工具把这种语言翻译成真正带有样式的文本(可以是 word 文档、可以是网站页面、还可以是各种带有样式的文本格式)。这个过程只需要使用 Markdown 编辑工具,编辑工具会帮你完成。
我们要做什么
显然我们只需要按照 Markdown 语言的语法写作,其余工作使用 Markdown 编辑工具即可完成。显然,我们要掌握 Markdown 语法。
Markdown 语法
Headers
# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag
This is an <h1> tag
This is an <h2> tag
This is an <h6> tag
Emphasis
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
This text will be italic This will also be italic
This text will be bold This will also be bold
You can combine them
Lists
Unordered
* Item 1
* Item 2
* Item 2a
* Item 2b
- Item 1
- Item 2
- Item 2a
- Item 2b
Ordered
1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
Images
![bio](/assets/images/bio-photo.jpg)
Format: ![Alt Text](url)
Links
[Yeehom Foo](http://yeehomfoo.github.io)
Blockquotes
As Kanye West said:
> We're living the future so
> the present is our past.
As Kanye West said:
We’re living the future so the present is our past.
Inline code
I think you should use an
`<addr>` element here instead.
I think you should use an
<addr>
element here instead.
总结
掌握上述常用语法,即可满足大部分写作需求。需要进一步掌握 Markdown 语法,可阅读下面的参考文档。
(done)
参考文档
[1] Basic writing and formatting syntax
[3] Markdown: Syntax