HEXO显示Markdown语法

Bo Zhang 2021-02-21 12:40:58
Categories: Tags:

Markdown

The following provides a quick reference to the most commonly used Markdown syntax.

Headers

H3

H4

H5
H6

Emphasis

Italic and Bold

Scratched Text

superscript2

Markdown doesn't support underline, but we can use HTML Text instead. Also, we can render almost any HTML code that we   like   such as superscript2.


Lists

without number:

with number:

  1. Item 1
  2. Item 2
  3. Item 3
    • Item 3a
    • Item 3b

Github

Images

logo

more styles by using of HTML:

Raspberry pi

Quotes

Imagination is more important than knowledge.

Albert Einstein

Hlines


Tables

1st Header 2nd Header 3rd Header
col 1 is left-aligned 1
col 2 is center-aligned 2
col 3 is right-aligned 3

Note that we can use HTML styles to hide tables’ overflow by putting them in a division like:

...

Code blocks

``r norm = function(x) { sqrt(x%*%x) } norm(1:4)