基础用法

Hexo Github Node.js
查看代码
1
{% hashtag Hexo %} {% hashtag Github https:github.com %} {% hashtag Node.js color:red %}

语法格式

1
{% hashtag text [href] [color] %}

可以指定href使其具有超链接效果,也可以指定颜色

超链接效果

Hexo
查看代码
1
{% hashtag Hexo https://hexo.io %}

自定义颜色

GitHub
查看代码
1
{% hashtag GitHub color:blue%}

共有'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple'
7种颜色,在不指定颜色的情况下按照标签数量下标进行渲染,例如第一个hashtag颜色是red,第二个是orange
等,也可在配置文件中设置defautl_color,设置后,所有标签都使用默认颜色

_config.stellar.yml
1
2
3
tag_plugins:
hashtag:
default_color: blue

属性

参数 说明
text 文本内容
href 链接地址
color ‘red’, ‘orange’, ‘yellow’, ‘green’, ‘cyan’, ‘blue’, ‘purple’