标签:site mpi contains table 输出 文件 contain purchase apple
文件扩展名使用: .md
.
-
, 代替标点和空格建议命名格式:file-name.md
新行:
不要 使用连续两空行,也就是说,不要连续使用两个换行符,除非是在代码块中不得已而必须出现。
以回车换行结束文件。不要在文件结束时留下空行。
不要在行尾留空格,除非是在行尾空出两个空格插入换行符
只使用了一行空行来分隔
- list
- list
# Header
First sentence. Second sentence.
尝试将一行限制在 80 个字符以下,将长段落按照以下的逻辑分开,例如:
设置你的文本编辑器对 Markdown 文件一行不要超过80字符,以免忘记。
echo a
echo a > file
$ echo a
a
$ echo a > file
Use the following Bash code:
echo a
echo a > file
`gcc` is the best compiler available.
xinetd stands for `eXtended Internet daemon`
使用正确的拼写和语法。
尽量选用英语,更准确的说美式英语。
类似 URL 或者代码,添加代码标记,这样拼写检查程序会自动忽略。
注意大小写敏感的拼写错误,尤其是项目名,品牌名,或者缩写。
避免使用非正式的缩写。
.
表示空格: #Header
#..Header
.
表示空格: # Header #
.
表示空格: .# Header
# Header 1
## Header 2
### Header 3
# The header of the example
# The Header of the Example
---
# Header
---
Content
建议使用
# Huge header
Huge header that talks about a complex subject.
不建议:
# Huge header that talks about a complex subject
:
, 句号 .
之类的标点符号结尾。标题用作用户索引的关键词,由于这个原因,你可能希望在标题中用多个关键词。
创建一个同层级的同义词标题在主标题之前,并且标题下不包含内容:
每一个同层级的空标题都假定是同义的
# Purchase
# Buy
You give money and get something in return.
如果层级不一样,那就是另外的含义:
# Animals
## Dog
在符号 >
后面接一个空格。
在每一行使用 > 符号,包括换行的句子。
不要在单独的引用中使用空行。
> a
>
> b
> a
> b
*
号和 +
.有序列表:
1.
来标记有序的列表, 除非你打算通过数字在相同 Markdown 文件或者外部文件中引用他们。可接受的, 使用文本引用:
The ouput of the `ls` command is of the form:
drwx------ 2 ciro ciro 4096 Jul 5 2013 dir0
drwx------ 4 ciro ciro 4096 Apr 27 08:00 dir1
1 2
Where:
1. permissions
2. number of files directory contains
Terms of use.
1. I will not do anything illegal.
2. I will not do anything that can harm the website.
如果新列表项被加入,引用会破坏。尽量减少这种问题:
- a
b
- c
或
1. a
b
1. c
- item 1
Content 1
- item 2
Content 2
- item 1
- item 2
- item 3
- item that
is wrapped
- item 2
- item 3
- item 1
- item 11
- item 12
- item 13
- item 2
- item 3
Before.
- list
- list
After.
I want to eat:
- apples
- bananas
- grapes
列表项结尾标点,除非:
不含标点
- apple
- banana
- orange
包含多个句子
- go to the market
- then buy some fruit. Bad for wallet.
- finally eat the fruit. Good for tummy.
包含非句号
- go to the marked
- then buy fruit?
- of course!
大写字母开头
- Go to the market.
- Then buy some fruit.
- Finally eat the fruit.
多段落
- go to the market
- then buy some fruit.
Bad for wallet.
- finally eat the fruit.
Good for tummy.
若要使用,格式化列表:
加粗
- **apple**: red fruit
- **dog**: noisy animal
- **apple**: red fruit.
Very tasty.
- **dog**: noisy animal.
Not tasty.
链接
- [apple](http://apple.com): red fruit
- [dot](http://dog.com): red fruit
代码
- `-f`: force
- `-r`: recursive
将内容和定义使用冒号和空格分割 :.
不要对齐定义,这样难以维护,并且不会显示在 HTML 输出
不建议下面这样的,冒号或者冒号后面的文字定义对齐
- **apple**: red fruit
- **dog**: noisy animal
code fence blocks
不要 缩进 fenced code blocks.
```ruby
a = 1
```
---
。用一空行包围表格。
不要缩进表格。
用 | 包裹表格的每一行。
竖直对齐所有表格边框, 中英文混用可能出现无法对齐的情况,尽量即可。
将标题和内容用连字符分割,用对齐的 |。
| 周围必须要有一个空格,除非是外部的 |。
列的宽度通过列中最长的单元格确定。
Before.
| h | Long header |
|------|-------------|
| abc | def |
| abc2 | def2 |
After.
分离连续:
使用一个空白的 HTML 注释 :<!-- -->
.
示例:
分离列表:
- list 1
- list 1
<!-- -->
- list 2
- list 2
分离缩进的代码块:
code 1
code 1
<!-- -->
code 2
code 2
分离引用:
> blockquote 1
> blockquote 1
<!-- -->
> blockquote 2
> blockquote 2
分离列表之后跟随额外的代码块:
- list
- list
<!-- -->
code outside list
code outside list
不建议使用
** bold **
` code `
[ link ]( http://a.com )
[text] [name]
建议使用
**bold**
`code`
[link](http://a.com)
[text][name]
[id2] http://long-url.com
[long id] http://a.com "name 1"
使用双引号,不要 使用单引号。
**bold**
.*italic*
.不建议:
**How to make omelets:**
Break an egg.
...
**How to bake bread:**
Open the flour sack.
...
建议:
# How to make omelets
Break an egg.
...
# How to bake bread
Open the flour sack.
...
建议:
<http://a.com>
不建议:
http://a.com
`http://not-a-link.com`
建议使用:
[file.html](file.html)
不建议使用:
<file.html>
建议:
<https://github.com>
不建议:
<github.com>
<address@example.com>
. 使用纯HTMLmarkdown
编辑器不支持标题下方的 ---
。markdown
编辑器编辑的文档中,标题下使用了 ---
作为标题结束,会导致标题无法渲染。markdown
文档标题总是从一级标题开始,并且标题下不要使用 ---
, 这样才能渲染标题,生成目录。标签:site mpi contains table 输出 文件 contain purchase apple
原文地址:https://www.cnblogs.com/bogonogob/p/10421084.html