#Markdown 常用语法

Markdown简单来说就是一个文本到html(text/html)的转换工具,官网有详细介绍

Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).

Thus, “Markdown” is two things: (1) a plain text formatting syntax; and (2) a software tool, written in Perl, that converts the plain text formatting to HTML. See the Syntax page for details pertaining to Markdown’s formatting syntax. You can try it out, right now, using the online Dingus.

The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.

The best way to get a feel for Markdown’s formatting syntax is simply to look at a Markdown-formatted document.

这里我主要简单写一下Markdown的常用指令,更加详细的指令可以参考这里:

English

繁體

Markdown的优点就是易读易写,兼容html。
下面这里是我整理的常用的markdown语法

标题

#一级标题

效果预览:

一级标题

##二级标题

效果预览:

二级标题

三级标题
...

Markdown一共支持从H1到H6(一级到六级)标题

区块引用

区块引用在段首加上

>

即可

列表

无序列表:

* 苹果
* 橙子
* 香蕉

效果:

  • 苹果
  • 橙子
  • 香蕉

有序列表

1. 苹果
2. 橙
3. 香蕉

效果:

  1. 苹果
  2. 橙子
  3. 香蕉

代码

如果要输出整段代码很简单只需要按下tab就可以输入代码了

#
*
...

如果要输出的是一小段代码,可以使用反引号

`要输出的字符`

效果如:printf(),*,##...

分隔线

连续输入三个以上的

***

就可以输出分割线了


连接

[点击打开我的博客主页](http://goo.gl/zjKgjH)

效果:

点击打开我的博客主页

还有一种连接:


效果:
http://goo.gl/zjKgjH

强调

强调使用*来起始和结尾(注意,强调是*起始结尾,而引用是*开头)

*这是一个例子*

这是一个例子

图片

Markdown可以插入图片,但是却无法调整图片的大小,所以建议在插入以前现在Photoshop里面调整好图片的大小,建议使用统一的固定大小,便于界面的美观。
插入图片的语法很简单,只需要在插入连接语法的前面加上一个!就可以了

![说明文字](图片路径)
Markdown

你可能感兴趣的:(#Markdown 常用语法)