Meta: escape chars when generating keywords
from tags
A content page contained `"` as a tag, and that caused the meta generator to produced a malformed page.
This commit is contained in:
parent
18ec09c5b0
commit
9f7a163456
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ function buildClaimOgMetadata(uri, claim, overrideOptions = {}, referrerQuery) {
|
|||
head += `<meta name="description" content="${cleanDescription}"/>`;
|
||||
|
||||
if (tags && tags.length > 0) {
|
||||
head += `<meta name="keywords" content="${tags.toString()}"/>`;
|
||||
head += `<meta name="keywords" content="${escapeHtmlProperty(tags.toString())}"/>`;
|
||||
}
|
||||
|
||||
head += `<meta name="twitter:image" content="${claimThumbnail}"/>`;
|
||||
|
|
Loading…
Reference in a new issue