This repository was archived by the owner on May 13, 2024. It is now read-only.
This repository was archived by the owner on May 13, 2024. It is now read-only.
require title keyword for frontmatters #52
Closed
Description
Feature request
What problem does this feature solve?
give users customized title in tags page
What does the proposed API look like?
when people use plugin like this:
plugins: [
[
'@vuepress/blog',
{
frontmatters: [
id: 'tags',
keys: ['tags'],
path: '/tags/',
layout: 'Tag',
scopeLayout: 'Tag',
title: '标签'
]
}
]
]
then they shall see the html <title> element when visit /tags/anyTag
like anyTag 标签 | $siteTitle
.
How should this be implemented in your opinion?
Do not know