fix(schema): add "keywords" attribute to tags

* https://stackoverflow.com/a/33056727
This commit is contained in:
curben 2019-06-27 22:01:04 +09:30
parent 132e96f69a
commit 8316503b5f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ function listTagsHelper(tags, options) {
if (options.amount) tags = tags.limit(options.amount)
if (style === 'list') {
result += `<ul class="${className}-list">`
result += `<ul class="${className}-list" itemprop="keywords">`
tags.forEach(tag => {
result += `<li class="${className}-list-item">`