Markdown语法学习
标题语法h1 #h1 一个井号相当于 h1h2 ##h2 两个井号相当于 h2h3 以此类推,有 1~6大小等级不同的 Markdown 应用程序处理 # 和标题之间的空格方式并不一致。为了兼容考虑,请用一个空格在 #和标题之间进行分隔。
段落i really like usingmarkdown.
i really like use mackdown.
换行支持 <br> 换行
强调语法粗体markdown语法 要加粗文本,在单词或者短语前后添加两个* ,或者 下划线 _i just love bold text, test **test**
html:使用 <strong>text</strong>
斜体markdown, 在单词或者短语前后各添加一个 * 或者一个 下划线this is a test *test*
htmlthis is a <em>test</em> <em>
引用语法要创建块引用,请在段落前添加一个 > 符号。
this is a ...
Hello World
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