Help.
[{{ range $index, $page := .Site.Pages }}{{ if $page.Title }}{{ if $index }},{{ end }}
{“url”: “{{ $page.Permalink }}”,
“title”: “{{ $page.Title }}”,
“content”: “{{ $page.PlainWords | replace “” “” }}”}{{ end }}{{ end }}]
never work.
question 1, can i use replace PlainWords(which generate slice?) / or use Plain and then remove all new line ?
question 2expression like “{{ .Content|replace “xx” “” }}” validate?
Thanks~