一些基础的 Markdown 语法实例,以及 reco 主题中的扩展语法实例
# 基础语法
# 扩展
# 代码
输入
代码语言:javascript复制::: demo [vanilla]
```html
<html>
<body id="demo0">hello</body>
</html>
<script>
</script>
<style>
#demo0 {
}
</style>
```
:::
输出
代码语言:javascript复制<html>
<body>
<div class="demo0">
</div>
</body>
</html>
<script>
</script>
<style>
.demo0 {
}
</style>
# Github 风格的表格
输入
代码语言:javascript复制| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
输出
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
# Emoji
输入
代码语言:javascript复制:tada: :100:
输出