Hexo next 开启 fancybox 查看图片大图
修改主题配置文件 开启 fancybox开关即可 1 2 3 # FancyBox is a tool that offers a nice and elegant way to add zooming functionality for images. # For more information: https://fancyapps.com/fancybox fancybox: true
修改主题配置文件 开启 fancybox开关即可 1 2 3 # FancyBox is a tool that offers a nice and elegant way to add zooming functionality for images. # For more information: https://fancyapps.com/fancybox fancybox: true
详情请参考官方网站 Giscus 官方网站 1 https://giscus.app/zh-CN Hexo-next-giscus 官方仓库 1 https://github.com/next-theme/hexo-next-giscus 参考的博客,不保证链接长期有效 1 https://getiot.tech/knowledge-base/hexo/hexo-comments 看域名,这个有可能在大陆被 ban 掉,科学上网 1 https://ithelp.ithome.com.tw/articles/10306883 自己实践过的步骤 准备工作 你的仓库必须是公开的 (public),否则访客将无法查看 discussion 你的 GitHub 已安装 giscus app ,否则访客将无法评论和回应 在你的仓库中启用 Discussions 功能 Hexo 配置 在你的 Hexo 博客目录中执行以下命令,安装 hexo-next-giscus 插件 1 npm install hexo-next-giscus --save 然后在 Hexo 或者 theme 的 _config.yml (我的是 _config.next.yml) 配置文件添加如下内容 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 giscus: enable: false repo: # Github repository name repo_id: # Github repository id category: # Github discussion category category_id: # Github discussion category id # Available values: pathname | url | title | og:title mapping: pathname # Available values: 0 | 1 reactions_enabled: 1 # Available values: 0 | 1 emit_metadata: 1 # Available values: light | dark | dark_high_contrast | transparent_dark | preferred-color-scheme theme: light # Available values: en | zh-CN lang: en # Place the comment box above the comments input_position: bottom # Load the comments lazily loading: lazy Giscus 配置 ...
以下操作都是对管理本地的远端配置 修改远程仓库地址 1 git remote set-url origin <remote-url> 仓库路径查询查询 1 git remote -v 添加远程仓库 1 2 // 注:项目地址形式为:https://gitee.com/xxx/xxx.git或者 git@gitee.com:xxx/xxx.git git remote add origin <你的项目地址> 删除指定的远程仓库 1 git remote rm origin
1 2 3 4 5 6 # 删除包含特定字符的行,匹配删除 :% g/abc/d # 删除不包含特定字符的行 :% v/abc/d :% g!/abc/d
给友链新增一个单独的页面 命令创建页面 1 hexo new page links 也可在博客根目录 /source 下手动创建 links 文件夹和里边的 index.md 文件 然后在博客根目录 /source 下会生成一个 links 文件夹,打开其中的 index.md 文件,在头部写入 type = “links”,这个一定要写 1 2 3 4 5 --- title: 友情链接 date: 2019-12-08 03:21:39 type: "links" --- 主题配置文件中menu下添加(我的是 NEXT 主题) 1 Links: /links/ || fa fa-link 在 /themes/next/languages/zh-Hans.yml 文件中 menu 下增加中文描述(可选) 1 links: 友链 像普通的 markdown 那样子编辑 index.md 就可以了