我被告知,如果你改变主意,就会改变世界 - 或者至少改变你的方式。我们花点时间来研究一下。
Hexo上NexT评论系统来回折腾后最终为什么采用Valine?
Hexo上博文永久链接唯一化的实现
Hexo上NexT主题五星评价StarRating的实现
步骤
Hexo上NexT主题已默认集成WidgetPack的Rating widget
文章投票功能,所以配置过程很简单,其步骤如下:
- 在widgetpack.com上注册,并获取用户ID。
- 修改NexT主题配置文件。
- 登录widgetpack.com,设置投票方式。
纪念AaronSwartz
Typora中设置文字字体、字号和颜色
通过在正文中直接内嵌HTML代码实现:
1 | <font face="STCAIYUN">华文字体</font> |
下面内嵌以上HTML代码片段,即实现如下风格:
华文字体
颜色为灰色
color=#0099ff size=5 face=”黑体”
MarkDown支持代码高亮
本文来源于他人原创,仅转载学习。
原创链接:https://blog.csdn.net/u012102104/article/details/78950290
在MarkDown编辑时,我们经常需要引入一段代码,此时若果代码能高亮显示,界面就会非常友好。
使用前:
public static void main(String[] args){
System.out.println(“Hello”);
}
使用后:
1 | public static void main(String[] args){ |
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 Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment