跳转至

Markdown的嵌套使用

注解-注解

Bash
1
2
3
4
5
!!! note
    note text

    !!! warning
        warning text

Note

note text

Warning

warning text

列表-列表

Bash
- aaa
    - bbb
  • aaa
    • bbb

引用-引用

Bash
> 区块引用  
>> 嵌套引用   

区块引用

嵌套引用

注解-代码块

依赖模块: pymdownx.superfences

Bash
1
2
3
4
5
6
7
!!! note
    note text
    ```python
    text1 = "Hello, "
    text2 = "world!"
    print text1 + text2
    ```

Note

note text

Python
1
2
3
text1 = "Hello, "
text2 = "world!"
print text1 + text2