vuepress-plugin-tagging
v1.0.0
Published
VuePress plugin for creating tag pages using frontmatter.
Readme
vuepress-plugin-tagging
Visit demo site.
Configuration example
Suppose you created markdown (tags.md) using global component.
module.exports = {
themeConfig: {
nav: [
{text: 'Tags', link: '/tags.html'},
],
},
plugins: [
'tagging',
],
};Predefined global components
all
<PluginTaggingTagListAllType1/><PluginTaggingTagListAllType2/>i18n (locale path specific)
<PluginTaggingTagListI18nType1/><PluginTaggingTagListI18nType2/>debug
<PluginTaggingTagListDebug/>clientDynamicModules
@dynamic/vuepress-plugin-tagging/tag-list
[
{
"name": "<tag name>",
"pages": [
"v-xxxxxxxx",
"v-xxxxxxxx",
...
]
},
...
]@dynamic/vuepress-plugin-tagging/tag-list-i18n
{
"<locale path>": [
{
"name": "<tag name>",
"pages": [
"v-xxxxxxxx",
"v-xxxxxxxx",
...
]
},
...
],
...
}