29 lines
721 B
Smarty
29 lines
721 B
Smarty
|
{{- /*
|
||
|
toPrettyRawJson
|
||
|
input: interface{} valid JSON document
|
||
|
output: pretty raw JSON string
|
||
|
*/}}
|
||
|
{{- define "toPrettyRawJson" -}}
|
||
|
{{- include "toPrettyRawJsonStr" (toPrettyJson .) -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- /*
|
||
|
toPrettyRawJsonStr
|
||
|
input: pretty JSON string
|
||
|
output: pretty raw JSON string
|
||
|
*/}}
|
||
|
{{- define "toPrettyRawJsonStr" -}}
|
||
|
{{- $s :=
|
||
|
(regexReplaceAll "([^\\\\](?:\\\\\\\\)*)\\\\u003e"
|
||
|
(regexReplaceAll "([^\\\\](?:\\\\\\\\)*)\\\\u003c"
|
||
|
(regexReplaceAll "([^\\\\](?:\\\\\\\\)*)\\\\u0026" . "${1}&")
|
||
|
"${1}<")
|
||
|
"${1}>")
|
||
|
-}}
|
||
|
{{- if regexMatch "([^\\\\](?:\\\\\\\\)*)\\\\u00(26|3c|3e)" $s -}}
|
||
|
{{- include "toPrettyRawJsonStr" $s -}}
|
||
|
{{- else -}}
|
||
|
{{- $s -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|