建站记录

Berrylium Lv1

前言

选择 redefine 主题是因为看到学弟在用,于是跟风。

用起来感觉确实不错,页面美观,功能也够用。

然后我自己又魔改了一番,记录一下过程。

功能测试戳我

安装 hexo 与 redefine 主题

参考搬运官方教程[1]

首先使用适合你的操作系统的方法安装 nodejs 和 npm。

1
2
sudo pacman -S git nodejs npm
npm install hexo-cli -g

假设你的博客想要安装在 blog 目录中,运行命令:

1
2
3
4
5
hexo init blog
cd blog
npm install
npm install hexo-theme-redefine@latest
wget https://raw.githubusercontent.com/EvanNotFound/hexo-theme-redefine/main/_config.yml -O _config.redefine.yml

之后默认工作目录为 Hexo 根目录,即上面命令新建的 blog 目录。

_config.yml 文件中更改主题:

_config.yml
1
theme: redefine

现在已经可以 hexo s (server)测试博客了。

配置

更改字体

可以去 Google Fonts 上找字体。示例:

_config.redefine.yml 中修改 global.fonts.chinese

_config.redefine.yml
1
2
3
enable: true # Whether to enable custom chinese fonts
family: "Noto Sans SC" # Font family
url: "https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Noto+Serif+SC:wght@200..900&display=swap" # Font URL to CSS file

部署到 github pages

配置 deployer

1
npm install hexo-deployer-git --save

github 上新建名为 用户名.github.io 的公开仓库,向 _config.yml 末尾添加:

_config.yml
1
2
3
4
5
deploy:
type: git
repo: https://github.com/用户名/用户名.github.io
branch: public
message: "Site updated: {{ now('YYYY-MM-DD HH:mm:ss') }}"

_config.redefine.yml 中修改 info.urlhttps://用户名.github.io

部署运行 hexo generate --deploy(缩写 hexo g -d

魔改

安装 npm 包并配置

1
2
npm uninstall hexo-renderer-marked hexo-math --save
npm install hexo-renderer-markdown-it-plus markdown-it-{mathjax3,imsize,attrs,bracketed-spans,task-lists,ruby} --save

你问我为什么不用 hexo-renderer-pandoc?我最开始看的教程没告诉我要本地装 pandoc,萌新的我被报错劝退,然后看到隔壁 markdown-it 有丰富的插件,就润了

其实找插件可能不如让AI生成js/css代码方便?

由于 KaTeX 支持范围不如 MathJax,所以选后者。

_config.yml 末尾添加:

_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
markdown_it_plus:
highlight: true
html: true
xhtmlOut: true
breaks: true
langPrefix:
linkify: true
typographer:
quotes: “”‘’
plugins:
- plugin:
name: "@iktakahiro/markdown-it-katex"
enable: false
- plugin:
name: markdown-it-mathjax3
enable: true
# 其他插件也同理启用

启用其他 LaTeX 宏包

好像只有 physics 是默认不启用的

非法操作

直接编辑 node_modules/markdown-it-mathjax3/index.js

AllPackages_js_1.AllPackages 替换为 AllPackages_js_1.AllPackages.concat(["physics"])

我简单 fork 了一下这个包,运行 npm install https://github.com/berrylium0078/markdown-it-mathjax3 安装 fork。

然后 _config.yml 对应位置改成:

_config.yml
1
2
3
4
5
- plugin:
name: markdown-it-mathjax3
enable: true
options:
packages: ['physics']

添加自定义 CSS

作为示例,添加一个萌娘百科的黑框[2]

修改 _config.redefine.yml

_config.redefine.yml
1
2
3
4
inject:
enable: true
head:
- <link rel="stylesheet" href="/css/heimu.css">

然后创建文件 /source/css/heimu.css

接下来介绍如何向萌娘“借”来上述代码。以 Firefox 为例:

  • 按下 Ctrl+Shift+C,鼠标选择需要查看的元素。
  • 在左侧查看 HTML 代码。
  • 在右侧搜索 heimu,定位到 load.php
  • 复制相关代码。

配置 VSCode

因为我的博客是用 VSCode 写的。

安装插件 「Math Snippets」(含有默认 LaTeX 代码片段)和 「Markdown All in One」(包含快捷键和预览功能)。

可以创建文件 /path/to/blog/.vscode/blog.code-snippets,用来存放博客专用代码模板。示例

编辑 settings.json,添加如下内容[3]。如果你不知道在哪,可以按 Ctrl+,,点右上角 Open Settings(JSON)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"[markdown]": {
// 快速补全
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
// 显示空格
"editor.renderWhitespace": "all",
// snippet 提示优先(看个人喜欢)
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
// 使用enter 接受提示
// "editor.acceptSuggestionOnEnter": "on",
},

  1. hexotheme redefine ↩︎

  2. 使用CSS实现隐藏汉字黑框 ↩︎

  3. 在VSCode中高效编辑markdown的正确方式 ↩︎

  • Title: 建站记录
  • Author: Berrylium
  • Created at : 2024-09-05 09:04:39
  • Updated at : 2025-04-02 14:56:42
  • Link: https://berrylium0078.github.io/2024/09/05/build-site/
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments