From 6af870a034a6763bf677559450c66f209546578d Mon Sep 17 00:00:00 2001 From: Rahat Zaman Date: Tue, 30 Jun 2020 12:31:29 +0600 Subject: [PATCH] Fixed empty string parse error in meta_json_id.html Hugo throws error while building if I do not give any description. Because the description were becoming only `"description": ,` which is invalid. FIxed it by wraping which will give `"description": "",` which is valid. --- layouts/partials/head/meta_json_ld.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/head/meta_json_ld.html b/layouts/partials/head/meta_json_ld.html index c2851c6..41d3d67 100644 --- a/layouts/partials/head/meta_json_ld.html +++ b/layouts/partials/head/meta_json_ld.html @@ -7,7 +7,7 @@ "datePublished": {{ .Date.Format "2006-01-02T15:04:05Z07:00" }}, "dateModified": {{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}, "url" : {{ .Permalink }}, - "description": {{ with (.Description | default (replaceRE "\n" " " (.Summary | truncate 170))) }}{{ . }}{{ end }}, + "description": "{{ with (.Description | default (replaceRE "\n" " " (.Summary | truncate 170))) }}{{ . }}{{ end }}", {{ with .Params.tags -}} "keywords": {{ . }}, {{ end -}} @@ -16,7 +16,7 @@ "url" : {{ .Permalink }}, "name": {{ .Title }}, {{ with $.Param "description" -}} - "description": {{ . }}, + "description": "{{ . }}", {{ end -}} {{ end -}} {{ with $.Param "image" -}}