Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Kruse <devel@sumpfralle.de>2020-10-01 05:51:05 +0300
committerLars Kruse <devel@sumpfralle.de>2020-10-01 05:51:05 +0300
commit31bcbb47004aa38fb96be64fe95835ccb70c5650 (patch)
tree3f65a75ff0560820cb827b393e0d74ffde0a5e43 /layouts
parent6cfca4c53ea90e498ea5bf3e9fb01b1b02a037e1 (diff)
Fix potential JSON encoding issues
Previous HTML-escapsing was used. But this would fail for different special characters (e.g. single quotes). Use "jsonify" for proper formatting instead.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/index.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/index.json b/layouts/index.json
index 84219aa..ab313ca 100644
--- a/layouts/index.json
+++ b/layouts/index.json
@@ -3,9 +3,9 @@
{{- if and $index (gt $index 0) -}},{{- end }}
{
"uri": "{{ $page.Permalink }}",
- "title": "{{ htmlEscape $page.Title}}",
- "tags": [{{ range $tindex, $tag := $page.Params.tags }}{{ if $tindex }}, {{ end }}"{{ $tag| htmlEscape }}"{{ end }}],
- "description": "{{ htmlEscape .Description}}",
+ "title": {{ $page.Title | jsonify }},
+ "tags": {{ $page.Params.tags | jsonify }},
+ "description": {{ .Description | jsonify }},
"content": {{$page.Plain | jsonify}}
}
{{- end -}}