Please enable Javascript to view the contents

Markdown语法

 ·  ☕ 2 分钟
    🏷️

Hugo 内容文件的一些简单的markdown语法, also it 同时介绍一些css相关内容.

标题

HTML <h1><h6> 代表六个级别. <h1> 最高 ,<h6> 最低.

H1

H2

H3

H4

H5
H6

段落

段落由一句或多句连续的文本组成,通过一个或多个空行分隔。(空行可能是没有任何内容的行、或者是只包含空行或制表符的行,多个空行也会显示成一个空行)。一个普通的段落不应该有空格或者制表符作为缩进。

可见,正文是文章的主体。正文通常由段落组成,段落则由缩进、换行和文本组成。

引用

blockquote元素表示从另一个来源引用的内容,可以选择带有必须在“ footer”或“ cite”元素内的引用,还可以带有内联更改,例如注释和缩写。

引用无属性

Tiam, ad mint andaepu dandae nostion secatur sequo quae.
Note that you can use Markdown syntax within a blockquote.

引用有属性

Don’t communicate by sharing memory, share memory by communicating.


Rob Pike1

表格

表格不是Markdown核心规范的一部分,但是Hugo支持。。。。

Name Age
Bob 27
Alice 23

表格内的内联markdown

Inline    Markdown    In    Table
italics bold strikethrough    code

代码块

反引号标注代码块

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

四空格代码块

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Hugo的内部高亮短码

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

列表

有序列表

  1. First item
  2. Second item
  3. Third item

无序列表

  • List item
  • Another item
  • And another item

嵌套列表

  • Item
  1. First Sub-item
  2. Second Sub-item

其他元素 — abbr, sub, sup, kbd, mark

GIF is a bitmap image format.

H2O

Xn + Yn: Zn

Press CTRL+ALT+Delete to end the session.

Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.


  1. The above quote is excerpted from Rob Pike’s talk during Gopherfest, November 18, 2015. ↩︎