0%

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

不断摸索的Hexo配置(持续更新)

修改Post内部代码段字体大小

_config.yml中直接修改fonts参数发现没有变化,直接修改样式文件
\source\css\_common\scaffolding\highlight\highlight.styl

1
2
3
4
5
6
7
8
$code-block
background: highlight-background
margin: 20px 0
padding: 15px
overflow: auto
font-size 13px // 改这里
color: highlight-foreground
line-height: $line-height-code-block

deploy之后生效.

设置阅读全文

  • 在文中加入<!-- more -->手动进行截断