hexo tags usage

hexo-github-repo-tag

usage

1
2
{% githubrepo 'https://github.com/JoJoJotarou/hexo-github-repo-tag' %}
{% githubrepo 'tiangolo/fastapi' %}

JoJoJotarou/hexo-github-repo-tag

A simple and beautiful tag for the GitHub repository.

tiangolo/fastapi

FastAPI framework, high performance, easy to learn, fast to code, ready for production

hexo-tag-hint

usage

1
2
3
4
# 单行
{% hint 'body_text' 'hint_text' %}
# 多行
{% hint 'body_text' 'hint_text_1st_line' 'hint_text_2nd_line' ... %}
  • Hexo
  • Hexo

note tag

usage

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 %}

default 提示块标签

primary 提示块标签

success 提示块标签

info 提示块标签

warning 提示块标签

danger 提示块标签

tabs tag

usage

1
2
3
4
5
6
7
8
9
10
11
{% tabs tab,1 %} 名字为tab,默认在第1个选项卡,如果是-1则隐藏
<!-- tab -->
**选项卡 1**
<!-- endtab -->
<!-- tab -->
**选项卡 2**
<!-- endtab -->
<!-- tab A -->
**选项卡 3** 名字为A
<!-- endtab -->
{% endtabs %}

选项卡 1

选项卡 2

选项卡 3 名字为A