Markdown语法学习Markdown介绍Markdown是一种轻量级标记语言,它使用纯文本格式编写,可通过转换工具将其转换成 HTML、PDF 和其他格式,常用于撰写技术文档、博客、论坛帖子等。它语法简单、清晰易读,可以让写作者更加专注于内容的表达和组织,减少排版和格式化的时间,提高效率和创作体验。
使用工具
VS Code: 轻量级文本编辑器,插件丰富,可拓展性强
Typora:UI简洁,所见即所得
标题标签几个”#”即表示几级标签,共六级标题,字体大小依次减小
代码:
123456# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题
效果展示:
一级标题二级标题三级标题四级标题五级标题六级标题文本标签加粗代码:
1**加粗内容**
效果展示:
加粗内容
倾斜代码:
12*倾斜内容1*_倾斜内容2_
效果展示:
倾斜内容1
倾斜内容2
下划线代码:
1<u>下划线</u>
效果展示:
下划线
删除线代码:
1~~删除~~
效果展示:
删除
标记(高亮)代码:
1==标记==
效果展示:
...
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment