Strip tags from title in JSON-LD
(cherry picked from commit 0bb74527677de3163f9fa81d7320680b0f1adb91) Signed-off-by: Sascha Wagner <sascha.wagner.89@gmail.com>
This commit is contained in:
parent
3090b344d8
commit
ad1ea4186d
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@
|
|||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "BlogPosting",
|
||||
"name": "{{ article.title }}",
|
||||
"headline": "{{ article.title }}",
|
||||
"name": "{{ article.title|striptags }}",
|
||||
"headline": "{{ article.title|striptags }}",
|
||||
"datePublished": "{{ article.date }}",
|
||||
"dateModified": "{{ article.modified }}",
|
||||
"author": {
|
||||
|
|
Loading…
Reference in a new issue