mirror of https://gitlab.com/curben/blog
fix(schema): add "keywords" attribute to tags
* https://stackoverflow.com/a/33056727
This commit is contained in:
parent
132e96f69a
commit
8316503b5f
|
@ -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">`
|
||||
|
|
Loading…
Reference in New Issue