(二)安装Hexo博客插件
{% series hexo配置 %}
四、安装 Hexo 插件
1.butterfly 主题插件(推荐)
https://butterfly.js.org/
安装主题
(使用 https://ghproxy.com/ 代理访问)
1234# 稳定版(推荐) git clone -b master https://ghproxy.com/https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly# 测试版git clone -b dev https://ghproxy.com/https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly// 主题目录:D:\blog\myblog\themes\butterfly
安装主题相关插件
12>npm install hexo-renderer-pug hexo-renderer-stylus --save// 主题目录:D:\blog\hexo\nod ...
(一)安装Hexo博客部署到GitHub或云服务器
(一)安装Hexo博客部署到GitHub或云服务器(二)安装Hexo博客插件(三)配置Hexo博客功能(四)配置Hexo编辑工具obsidian
一、本地安装
1. 安装Git、Node.js、npm(略)
2. 安装hexo
1>npm install -g hexo-cli hexo-server
npm install -g:npm包管理工具进行全局安装。
hexo-cli:为hexo的客户端模块。
hexo-server:服务器模块。可以支持在本地服务器生成网页并进行调试。
3.本地初始化博客文件夹
123>hexo init hexo // 创建 hexo 文件夹(自定义),拉取hexo项目。>cd hexo // 进入 hexo 文件夹>npm install hexo-deployer-git --save // 安装自动部署至远程git仓库的插件
4.配置Hexo的部署插件(_config.yml)
在本地计算机的hexo文件夹,打开 D:\bolg\hexo\ _config.yml ...
hexo-renderer-markdown-it-plus demo
reason
hexo-renderer-markdown-it-plus
demo
reason
I use hexo-theme-next for my blog, and I met a problem same with #826.
I wrote a plugin hexo-renderer-markdown-it-plus for fix it,and this article is a demo for hexo-renderer-markdown-it-plus
The hexo default hexo-renderer-marked do not support LaTex parser, you must referer external link to parse Latex grammar to html(That’s whathexo-theme-next did, hexo-theme-next use mathjax), and the mathjax and hexo-renderer-marked will cause some probl ...