# 支持 html 标签
# 找到配置文件 (_config.yml)
markdown: | |
render: # 渲染器设置 | |
html: true # 过滤 HTML 标签 | |
xhtmlOut: true # 使用 '/' 来闭合单标签 (比如 <br />)。 | |
breaks: true # 转换段落里的 '\n' 到 <br>。 | |
linkify: true # 将类似 URL 的文本自动转换为链接。 |
# 结论
将
html
修改为true
# 修改字体的默认颜色
# 找到 css 文件
- 路径为 /themes/shoka/source/css/_colors.styl
--primary-color: var (--color-red); | |
例如: | |
--primary-color: green; |
# 结论
修改想要的颜色 (
--color-red
_colors.styl 文件中定义好的)