hexo 教學

hexo 指令

新增文章

1
hexo new [layout] <title>
  • layout 是部落格版型,沒設定就會用 _config.yml 中的設定。
  • title 是文章名稱。

建立本地伺服器

1
hexo server

可檢寫成 hexo s。

清理暫存

1
hexo clean

能簡寫成 hexo cl。

換主題、上傳文章前先清一次暫存,通常能解決大部分的奇怪問題,清除快取檔案 (db.json)和已產生的靜態檔案(public)。

產生靜態檔案

1
hexo generate

能簡寫成 hexo g。

部屬檔案

1
hexo deploy

能簡寫成 hex d。

常見問題

Imgur

塞入網址

codepen 測試

使用 codepen 內建的 embed 功能就可以了,html 或 iframe 都行。

See the Pen print a number with commas as thousands separators in regular expression by Donkle (@moreCoke) on CodePen.

github 路徑配置

可參考 hexo 配置文件

在 _config.yml 下配置 github 路徑。

1
2
url: https://github.com/MoreCoke
root: /myblog/

程式碼的複製功能怎麼做?

到 next 的 _config.yml 設定,hexo:Next 一鍵複製程式碼

在 codeblock 下加入 copy button。

1
2
3
4
5
codeblock:
copy_button:
enable: true
# Show text copy result.
show_result: true