跟文章有關的功能,目前會記錄在此

發表帶有標籤、分類的文章

  1. 新增文章
1
hexo new testpost
  1. 編輯 md 檔案,加上 tags 或是 category
1
2
3
4
5
6
title: Hexo-其他功能
date: 2015-01-12 17:03:20
tags:
- Hexo
category:
- Hexo

新增文章圖片

官方文件 Include-Assets

  1. 預設方式-統一管理
    • 圖片放進 source/images
    • 編輯 md 使用 ![](/images/image.jpg)
  2. 進階方式-個別管理
    • 編輯 _config.yml 開啟 post_asset_folder: true
    • 圖片放進同名文章的資料夾內 _posts/testpost/image.jpg
    • 編輯 md 使用 ![](image.jpg)

語法優化(使用以下語法才可以在首頁顯示)

{% asset_path filename %}
{% asset_img [class names] slug [width] [height] [title text [alt text]] %}
{% asset_link filename [title] [escape] %}

{% asset_img result.jpg 400 "lorem ipsum"%}

例如:

{% asset_img hexo.jpg 400 %}


增加自訂頁面、標籤、分類

下面語法會在 source 底下直接建立 about 資料夾和 index.md,不同於一般文章是獨立的頁面

1
hexo new page about

同時也可以編輯 index.md

1
2
3
title: about
date: 2021-12-26 18:55:01
comments: false <!-- 設定為 false 代表不開放留言 -->

增加標籤頁、分類頁,但似乎預設主題會沒有這兩頁的基本樣板,可以自行寫程式或是改用 next theme

1
2
hexo new page tags
hexo new page categories

新增 note

default 提示

primary 提示

success 提示

info 提示

warning 提示

danger 提示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% note default %}
default 提示
{% endnote %}

{% note primary %}
primary 提示
{% endnote %}

{% note success %}
success 提示
{% endnote %}

{% note info %}
info 提示
{% endnote %}

{% note warning %}
warning 提示
{% endnote %}

{% note danger %}
danger 提示
{% endnote %}