hexo-basic

記錄hexo基本的設定


更新記錄

item note
20160616 第一版
20161223 增加內置標簽
20170209 增加:記錄使用語法

目錄


記錄使用語法

  • Hexo 3 新增了幾個外掛,讓您更方便的在文章內引用資產
    1
    2
    3
    {% asset_path slug %}
    {% asset_img slug [title] %}
    {% asset_link slug [title] %}

內置標簽

參考來源:内置标签

文章置中

  • example

    1
    {% cq %} blah blah blah {% endcq %}
  • 範例

    blah 文章置中 blah

全圖片顯示

  • example
    1
    2
    3
    <img src="ldvr-flow.png" class="full-image" />
    {% fullimage ldvr-flow.png, alt, title %}
    {% fi /ldvr-flow.png, alt, title %}

hexo基本設定

如何新增照片於source/_posts

當編輯網頁需要使用到圖片,此時需要將圖片新增加到本地

  • 出處:資產資料夾(Asset Folders)

  • 修改 _config.yml 設定 post_asset_folder 為 ture,將會在hexo new時自動產生目錄

    1
    post_asset_folder: true
  • 於source xx.md中加入下例,記得將slug改為你的圖片名稱

    1
    {% asset_img slug [title] %}
  • 也可以直接使用img方便設定width

    1
    {% img /2016/06/13/ldd3-chapter5-syscall/Linux_kernel_System_Call_Interface_and_glibc.svg 720 %}

參考來源