Closed i-abc closed 1 year ago
解决 issue,增加 keywords,支持多种设置方法。
front-matter 中设置的 keywords > front-matter 中设置的 tags > 根目录下 _config.yml 中设置的 keywords > 返回空字符串
keywords
tags
--- tags: [tag1, tag2, Tag3] keywords: keyword1,Keyword2,keyword3 ---
结果:
<meta name="keywords" content="keyword1,Keyword2,keyword3">
tags: [tag1, tag2, Tag3]
<meta name="keywords" content="tag1,tag2,Tag3">
或
--- tags: - Tag1 - tag2 - Tag3 ---
<meta name="keywords" content="Tag1,tag2,Tag3">
对应无法自定义 front-matter 及 front-matter 中未设置 keywords、tags 的这两种页面。
keywords: K1,k2,k3
<meta name="keywords" content="K1,k2,k3">
感谢commit
解决 issue,增加 keywords,支持多种设置方法。
优先级
front-matter 中设置的
keywords
> front-matter 中设置的tags
> 根目录下 _config.yml 中设置的keywords
> 返回空字符串示例
front-matter 中设置 keywords
结果:
front-matter 中只设置 tags
结果:
或
结果:
_config.yml 中设置 keywords
对应无法自定义 front-matter 及 front-matter 中未设置 keywords、tags 的这两种页面。
结果: