建站踩坑记
前言
选择 redefine 主题是因为看到学弟 在用,于是跟风。
用起来感觉确实不错,加载很快,页面美观,功能虽然不是最全的但也够用,然而对数学公式和表情包的支持不好……
加了别的插件解决了问题,所以记录一下搭建过程。
p.s. 学弟不知为何删库跑路了,截至 2024/11/02 仍未回归。
安装软件包
1 | sudo pacman -S nodejs npm |
安装 redefine 主题
参(ban)考(yun)官方教程:hexo ,theme redefine
假设你的博客安装想要在当前目录下的 blog
文件夹中,运行命令:
1 | hexo init blog |
以下默认工作目录为 Hexo 根目录,即上面命令新建的 blog
目录
在 _config.yml
文件中,将 theme
值修改为 redefine
。
1 | theme: redefine |
此时已经可以 hexo s
测试并配置博客了。
更换插件
为了更好的数学公式和脚注、图片缩放等功能,需要换一下插件:
1 | npm uninstall hexo-renderer-marked --save |
可以尝试一些其他插件 。
由于 KaTeX 功能不全,且新版 MathJax 做了效率优化,所以这里可以放心选 MathJax。
至于缩写……可以配置 vscode snippets(有个插件 math-snippets
)辅助输入,或者在文件头部插入自己定义的宏。
然后在 _config.yml
末尾添加:
1 | markdown_it_plus: |
更改字体字体
编辑 _config.redefine.yml
,找到 global > fonts > chinese
:
1 | enable: true |
部署到 github pages
配置 deployer
1 | npm install hexo-deployer-git --save |
github 上新建名为 username.github.io 的公开存储库,这里 username 是你的 github 用户名
编辑 _config.yml
,改成(注意用户名改成你自己的):
1 | deploy: |
_config.redefine.yml
中修改
1 | info: |
部署方法
1 | hexo g -d |
- Title: 建站踩坑记
- Author: Berrylium
- Created at : 2024-09-05 09:04:39
- Updated at : 2024-11-05 10:33:09
- Link: https://berrylium0078.github.io/2024/09/05/build-site/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments