Hello,
I am creating a json with hugo :
[{{ range $index, $page := .Site.Pages }}
{{ if ne $page.Type "json" }}
{{ if and $index (gt $index 0) }},{{ end }}
{
"url": "{{ $page.Permalink }}",
"title": "{{ $page.Title }}",
"content": "{{ $page.PlainWords }}"
}{{ end }}{{ end }}]
In my markdownI have this :
* Déterminer l'emplacement de la configuration Maven: `C:\Users\[COMPTE WINDOWS]\.m2\settings.xml`
Anyway to escape the slashes with hugo so it doesn’t invalidate my json?
Thanks