Html-encode date ranges in html export

pull/66/head
Alexey Golub 6 years ago
parent 7ecf90d1cb
commit 69088b83eb

@ -27,11 +27,11 @@
{{ if From || To }} {{ if From || To }}
<div class="info__channel-date-range"> <div class="info__channel-date-range">
{{ if From && To }} {{ if From && To }}
Between {{ From | FormatDate }} and {{ To | FormatDate }} Between {{ From | FormatDate | HtmlEncode }} and {{ To | FormatDate | HtmlEncode }}
{{ else if From }} {{ else if From }}
After {{ From | FormatDate }} After {{ From | FormatDate | HtmlEncode }}
{{ else if To }} {{ else if To }}
Before {{ To | FormatDate }} Before {{ To | FormatDate | HtmlEncode }}
{{ end }} {{ end }}
</div> </div>
{{ end }} {{ end }}

Loading…
Cancel
Save