Markdown的嵌套使用
注解-注解
| Bash |
|---|
| !!! note
note text
!!! warning
warning text
|
列表-列表
引用-引用
区块引用
嵌套引用
注解-代码块
依赖模块: pymdownx.superfences
| Bash |
|---|
| !!! note
note text
```python
text1 = "Hello, "
text2 = "world!"
print text1 + text2
```
|
Note
note text
| Python |
|---|
| text1 = "Hello, "
text2 = "world!"
print text1 + text2
|