0%

Hexo | Coding Style

行内代码, 用单引号引起来, 像这样 code-1

行间代码, 用三个单引号引起来, 像这样

1
2
3
4
code-1
code-2
...
code-n

设置代码高亮主题

NexT 使用 Tomorrow Theme 作为代码高亮,共有5款主题供你选择。 NexT 默认使用的是 白色的 normal 主题,可选的值有 normal,night, night blue, night bright, night eighties:
在主题配置文件中修改

1
2
3
4
5
# Code Highlight theme
# Available value:
# normal | night | night eighties | night blue | night bright
# https://github.com/chriskempson/tomorrow-theme
highlight_theme: night eighties # 修改即可

设置代码字体

修改\themes\next\source\css_variables\base.styl

1
2
3
4
5
6
7
// Code & Code Blocks
// --------------------------------------------------
$code-font-family = consolas
$code-font-size = 14px
$code-background = $gainsboro
$code-foreground = $black-light
$code-border-radius = 4px

Note

被代码框框起来的部分,不需要转义,是怎样就怎样。
处于正文中的,需要被转义。
使用英文问号?,逗号,,句号.,引号'.
注意代码框提示符和单引号的区别。