Hexo
Hexo 是一个快速、简洁且高效的博客框架。 Hexo 使用 Markdown(或其他标记语言)解析文章,在几秒内,即可利用靓丽的主题生成静态网页。
1 2 3 micromamba env create -n hexo micromamba activate hexo micromamba install conda-forge::nodejs
nodejs 22.8.0
git is installed
底下是官方寫的 Quick Start,只需要短短五行指令就可以讓部落格跑起來。
1 2 3 4 5 npm install hexo-cli -g hexo init blogcd blog npm install hexo server
display 1 INFO Hexo is running at http://localhost:4000/ . Press Ctrl+C to stop.
如果你已經有部落格資料夾,那麼你可以跳過“hexo init blog”
Useful commands
清理 hexo ,类似于清理编译结果,例如 执行命令 hexo clean
生成静态页面, 执行命令 hexo g
启动服务,执行命令 hexo s ,默认在 4000 端口启动,访问本地4000端口即可查看本地网站
1 2 3 4 5 hexo new 'post name' hexo clean hexo generate hexo server hexo deploy
Theme: Fluid
一款 Material Design 风格的主题
An elegant Material-Design theme for Hexo
Step 1
下载 最新 release 版本 解压到 themes 目录,并将解压出的文件夹重命名为 fluid。
Step 2
1 2 3 4 5 如下修改 Hexo 博客目录中的 **_config.yml**: theme: fluid # 指定主题 language: zh-CN # 指定语言,会影响主题显示的语言,按需修改
Step 3
首次使用主题的「关于页」需要手动创建:
创建成功后,编辑博客目录下 /source/about/index.md,添加 layout 属性。
修改后的文件示例如下:
1 2 3 4 5 6 --- title: aboutlayout: about --- 这里写关于页的正文,支持 Markdown, HTML
Filename
https://hexo.io/docs/writing
By default, Hexo uses the post title as its filename. You can edit the new_post_name setting in _config.yml to change the default filename. For example, :year-:month-:day-:title.md will prefix filenames with the post creation date. You can use the following placeholders:
1 2 3 new_post_name: :year-:month-:day-:title.md
in **_config.yml** under themes/fluid.
math
1 2 3 $ micromamba install conda-forge::pandoc $ npm uninstall hexo-renderer-marked --save $ npm install hexo-renderer-pandoc --save
and, 1 2 3 4 math: enable: true specific: false engine: mathjax
mermaid
1 $ npm install hexo-filter-mermaid-diagrams
Deploy to github
设置部署类型和 github 仓库位置和主分支,到网站配置文件 _config.yml 中修改如下:
表示部署类型为 git;
仓库为 git@github.com:username/github.io.git ,替换成你的仓库即可;
分支为 master 主分支;
1 2 3 4 deploy: type: git repo: git@github.com:waipangsze/waipangsze.github.io.git branch: main
安装 git 扩展模块 hexo-deployer-git,到 blog 目录中执行命令:
1 $ npm install hexo-deployer-git --save
执行命令
部署到上面创建的 github 仓库中。
这一步就是向 github 仓库的master 分支提交文件,所以本地要有权限向你的 github 仓库提交。需要 sshkey ,至于怎么添加 sshkey,如果不清楚,查一下就知道了。
1 2 3 4 To github.com:waipangsze/waipangsze.github.io.git + 4aa63c5...24ec1e5 HEAD -> main (forced update) Branch 'master' set up to track remote branch 'main' from 'git@github.com:waipangsze/waipangsze.github.io.git' . INFO Deploy done : git
hexo blog 多設備同步
From hexo博客多设备同步
github上的repo创建了两个分支,master保存静态页面,hexo用于保存网站的全部文件。
将旧环境中的文件上传到github的hexo分支:
github上切换到hexo分支,git clone仓库到本地。
此时本地会多出一个username.github.io文件夹,命令行cd进去,删除除.git文件夹(如果你看不到这个文件夹,说明是隐藏了。windows下需要右击文件夹内空白处,点选’显示/隐藏 异常文件’,Mac下我就不知道了)外的其他文件夹。
命令行git add -A把工作区的变化(包括已删除的文件)提交到暂存区(ps:git add .提交的变化不包括已删除的文件)。
命令行git commint -m "some description"提交。
命令行git push origin hexo推送到远程hexo分支。此时刷下github,如果正常操作,hexo分支应该已经被清空了。
复制本地username.github.io文件夹中的.git文件夹到hexo项目根目录下。此时,hexo项目已经变成了和远程hexo分支关联的本地仓库了。而username.github.io文件夹的使命到此为止,你可以把它删掉,因为我们只是把它作为一个“中转站”的角色。以后每次发布新文章或修改网站样式文件时,git add . & git commit -m "some description" & git push origin hexo即可把环境文件推送到hexo分支。然后再hexo g -d发布网站并推送静态文件到master分支。
1 2 3 4 5 6 7 8 9 10 11 git clone git@github.com:waipangsze/waipangsze.github.io.git waipangsze.github.io/ git switch hexo git log cp -r .git ../../blog/ cd ../../blog/cat .gitignore git status git add . git commit -a git push origin hexo
新环境
这部分应该要简单一点,如果你已经搭建过一个hexo博客的话。
新电脑上安装node.js和git。
安装hexo:npm install -g hexo-cli。
clone远程仓库到本地 git clone git@github.com:username/username.github.io.git。
根据packge.json安装依赖npm install。
本地生成网站并开启博客服务器:hexo g & hexo s。如果一切正常,此时打开浏览器输入http://localhost:4000/ 已经可以看到博客正常运行了。
在两台电脑上的同步操作
至此,迁移工作已完成,在两台电脑之间的同步操作如下:
git pull从远程hexo分支拉取最新的环境文件到本地,可以理解为svn的更新操作。比如在公司写了博客,回家在电脑上也要写需要先执行这一步操作。
文章写完,要发布时,需要先提交环境文件,再发布文章。按以下顺序执行命令:git add .、git commit -m "some descrption"、git push origin hexo、hexo g -d。
Upload to github
1 2 3 4 5 6 git pull --rebase git status git add . git commit --amend git push -u origin hexo
相關連結 icon
官方的 icon 圖示,均引用自目前做網站最多人使用的免費 icon 圖庫 Font Awesome ,Font Awesome 是一個基於CSS和LESS的字體和圖示工具套件。它由Dave Gandy製作,用於Twitter Bootstrap,後來被整合到BootstrapCDN 中。Font Awesome在使用第三方Font Scripts的網站中佔有20%的市場份額,排在Google字體之後的第二位。
便签
可选便签:
primary
secondary
success
danger
warning
info
light
primary: 文字 或者 markdown
均可
secondary: 文字 或者 markdown
均可
success: 文字 或者 markdown
均可
danger: 文字 或者 markdown
均可
warning: 文字 或者 markdown
均可
1 2 3 {% note primary %} primary: 文字 或者 `markdown` 均可 {% endnote %}
折叠块
使用折叠块,可以折叠代码、图片、文字等任何内容,你可以在 markdown 中按如下格式:
1 2 3 {% fold info @title %} 需要折叠的一段内容,支持 markdown {% endfold %}
多张图片按一定布局组合显示
1 2 3 4 5 6 7 {% gi 5 3 -2 %} ![1] (https : 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 menu: - { key: "home" , link: "/" , icon: "iconfont icon-home-fill" } - { key: "archive" , link: "/archives/" , icon: "iconfont icon-archive-fill" } - { key: "category" , link: "/categories/" , icon: "iconfont icon-category-fill" } - { key: "tag" , link: "/tags/" , icon: "iconfont icon-tags-fill" } - { key: "links" , link: "/links/" , icon: "iconfont icon-link-fill" } - { key: "Bookmarks" , link: "/bookmark/" , icon: "iconfont icon-bookmark" } - { key: "about" , link: "/about/" , icon: "iconfont icon-user-fill" , name: 'About Me' } - { key: 'Docs' , icon: 'iconfont icon-books' , submenu: [ { key: 'Meteorology' , link: '/categories/Meteorology/' , icon: "iconfont icon-plan" } ] }
這裡我們使用/categories/Meteorology/中的鏈接,但它只是標題,沒有封面圖片 。如何顯示封面圖片 ?
On category.ejs
這裡我們使用/categories/Meteorology/中的鏈接,但它只是標題,沒有封面圖片 。如何顯示封面圖片 ?
它調用了程式碼,
1 <%- partial ('_partials/archive-list.ejs' , { params : { key : page.layout , postTotal : cat ? cat.posts .length : 0 } }) %>
建立一個 my-list.ejs 並使用它的程式碼,
1 <%- partial ('_partials/my-list.ejs' , { params : { key : page.layout , postTotal : cat ? cat.posts .length : 0 } }) %>
my-list.ejs 是什麼? (複製自index.ejs,其中一部分)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 <div class ="list-group" > <p class ="h4" > <%= __(params.key + '.post_total', params.postTotal) %></p > <hr> <% var dateCursor %> <% page.posts .each (function (post ) { %> <div class ="row mx-auto index-card" > <% var post_url = url_for(post.path), index_img = post.index_img || theme.post.default_index_img %> <% if (index_img) { %> <div class ="col-12 col-md-4 m-auto index-img" > <a href ="<%= post_url %>" target ="<%- theme.index.post_url_target %>" > <img src ="<%= url_for(index_img) %>" alt ="<%= post.title %>" > </a > </div > <% } %> <article class ="col-12 col-md-<%= index_img ? '8' : '12' %> mx-auto index-info" > <h2 class ="index-header" > <% if (theme.index.post_sticky && theme.index.post_sticky.enable && post.sticky > 0) { %> <i class ="index-pin <%= theme.index.post_sticky && theme.index.post_sticky.icon %>" title ="Pin on top" > </i > <% } %> <a href ="<%= post_url %>" target ="<%- theme.index.post_url_target %>" > <%= post.title %> </a > </h2 > <% var excerpt = post.description || post.excerpt || (theme.index.auto_excerpt.enable && !post.encrypt && post.content) %> <a class ="index-excerpt <%= index_img ? '' : 'index-excerpt__noimg' %>" href ="<%= post_url %>" target ="<%- theme.index.post_url_target %>" > <div > <%- strip_html(excerpt).substring(0, 200).trim().replace(/\n/g, ' ') %> </div > </a > <div class ="index-btm post-metas" > <% if (theme.index.post_meta.date) { %> <div class ="post-meta mr-3" > <i class ="iconfont icon-date" > </i > <time datetime ="<%= full_date(post.date, 'YYYY-MM-DD HH:mm') %>" pubdate > <%- date(post.date, config.date_format) %> </time > </div > <% } %> <% if (theme.index.post_meta.category && post.categories.length > 0) { %> <div class ="post-meta mr-3 d-flex align-items-center" > <i class ="iconfont icon-category" > </i > <%- partial('_partials/category-chains', { categories: post.categories, limit: 1 }) %> </div > <% } %> <% if (theme.index.post_meta.tag && post.tags.length > 0) { %> <div class ="post-meta" > <i class ="iconfont icon-tags" > </i > <% post.tags.each(function(tag){ %> <a href ="<%= url_for(tag.path) %>" > #<%- tag.name %></a > <% }) %> </div > <% } %> </div > </article > </div > <% }) %> </div > <%- partial ('_partials/paginator' ) %>
範例網站
zkqiang's blog
秉烛夜读
https://github.com/fantasyhh/fantasyhh.github.io
來點鳥 blog
吃白饭的休伯利安号
Yu's Space
Justlovesmile
zsyyblog.com
Yangyy's Life
Bensz’s blog
七号中微子
张赛东
Fl0w3r | Hexo-Fluid 博客建站記錄
南科大地空系空间物理研究生
References:
Hexo Fluid Docs
一个简单而轻量级的 Hexo 主题
用 Hexo 和 Github Pages 建立部落格吧
用 GitHub + Hexo 免费搭建博客,保姆级教程
Hexo中插入mermaid diagrams
hexo博客多设备同步
多台电脑同步更新Hexo博客