1.标题

H1

H2

H3

H4

H5
H6

2. 段落

使用单星号 * 或者单下划线 _ 标记 斜体强调 或者 斜体强调

使用两个星号 ** 或者两个下划线 __ 标记 加粗强调 或者 加粗强调

引号和下划线可叠加使用 → 只是加粗 斜体并加粗

使用两个波浪线 ~~ 标记 已删除文字

行内代码使用反引号: ` 标记 →print("hello world")

填充文字暂无 Markdown 标记,直接使用 HTML 标签 <ins></ins> 标记 填充文字

使用<sup></sup> 上标 X2 / <sub></sub> 下标 X2

使用<kbd></kbd>按键 Alt

外链 I’m ZMX Blog

页面内段落 引用

Notice:你可以通过 {#section-id} 方式自定义段落锚点

参考资料 [1][2]

3. 列表

以下的无序、有序和任务列表均支持二级嵌套,不建议使用二级以上嵌套。

3.1 无序列表

  • 无序列表
    • 嵌套的无序列表
    • 嵌套的无序列表
    • 嵌套的无序列表
  • 无序列表
    1. 嵌套的有序列表
    2. 嵌套的有序列表
    3. 嵌套的有序列表
  • 无序列表
    • 嵌套的无序列表
    • 嵌套的无序列表
    • 嵌套的无序列表

3.2 有序列表

  1. 有序列表
    1. 嵌套的有序列表
    2. 嵌套的有序列表
    3. 嵌套的有序列表
  2. 有序列表
    • 嵌套的无序列表
    • 嵌套的无序列表
    • 嵌套的无序列表
  3. 有序列表
    • 嵌套的无序列表
    • 嵌套的无序列表
    • 嵌套的无序列表

3.3 定义列表

CSS
层叠样式表

3.4 任务列表

4. 引用

We are made of star-stuff

The Cosmic Connection: An Extraterrestrial Perspective by Carl Sagan

5. 代码

以本站的一段 python 代码做演示。

# -*- coding: utf-8 -*-
#!/usr/bin/env python
def triangles():
    L = [1]
    while True:
        yield L
        L.append(0)
        L = [L[i - 1] + L[i] for i in range(len(L))]

6. 分割线


7. 图片

不带标题的图片,如下图👇

数据架构图

带标题的图片,如下图👇

datum

数据架构图

8. 表格

使用 Markdown 画的表格,如下表👇

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

9. 数学公式

主题使用了基于$\LaTeX$ ,$\TeX$的 MathJax 开源库来实现对数学公式的支持,使用 $$ 标记。

$$ \sum_{i=1}^n \frac{1}{i^2} $$

10. 网易云音乐

主题文章中可以轻松插入 网易云音乐 的指定音乐,你可以根据需要将音乐设置为自动播放,在主题目录 layouts/shortcodes 文件夹下的 music.html 对该标签进行定义。

🎵Hello darkness, my old friend,

I’ve come to talk with you again,

Because a vision softly creeping,

Left its seeds while I was sleeping,

And the vision that was planted in my brain

Still remains

Within the sound of silence.

In restless dreams I walk alone

Narrow streets of cobblestone,

‘Neath the halo of a street lamp,

I turned my collar to the cold and damp

When my eyes were stabbed by the flash of a neon light

That split the night

And touched the sound of silence.

And in the naked light I saw

Ten thousand people, maybe more.

People talking without speaking,

People hearing without listening,

People writing songs that voices never share

And no one dared

Disturb the sound of silence.

“Fools” said I,“You do not know

Silence like a cancer grows.

Hear my words that I might teach you,

Take my arms that I might reach you.”

But my words like silent raindrops fell,

And echoed

In the wells of silence

And the people bowed and prayed

To the neon god they made.

And the sign flashed out its warning,

In the words that it was forming.

And the signs said, ‘The words of the prophets are written on the subway walls

And tenement halls.

And whisper’d in the sounds of silence.🎵

11. YouTube

由于不明原因可能无法播放。

参考资料

  1. Markdown wikipedia
  2. Markdown 语法手册