第一篇笔记
大约 1 分钟
第一篇笔记
目录
- This is the first note made by Chen.
- Now you can see it.
- here are some codes.
console.log("Hi.this is my first note.")
建站知识笔记
零零碎碎的知识 详细地址
内置 Markdown 拓展
- 支持表格
学号 | 姓名 |
---|---|
001 | 张三 |
002 | 李四 |
删除线
当然这些是基础知识!
标题锚点(
markdown-it-anchor
支持)链接(使用
Markdown
链接语法)Emoji
使用- 博客搭建好啦 🎉!
代码块
- 行高亮
const foo: String = 'a'
let bar: Array<String> = [foo, 'b']
console.log(bar)
添加
v-pre
- 模板语法可以在
Markdown
中使用,同样可以在代码块中生效
- 模板语法可以在
默认情况(保持原样)
1 + 2 + 3 = {{ 1 + 2 + 3 }}
- 下述代码会被
Vue
编译 - 也就是说我们在
Markdown
中可以使用Vue
- 模板语法
1 + 2 + 3 = 6
JS
代码高亮,下面代码不会被正确编译
1 + 2 + 3 = {{ 1 + 2 + 3 }}
- 列表标记
<ol>
<li>小明</li>
<li>小李</li>
<li>小红</li>
</ol>
- 上述代码将会在
Markdown
中渲染成下述
- 小明
- 小李
- 小红
行内元素
See my 演示 page for details.
代码
There is a literal backtick (`) here
To Be Continue ...