finish feed

This commit is contained in:
2023-09-05 17:16:39 -07:00
parent 7fb1f05a1e
commit c1e82ffb2c
11 changed files with 9 additions and 27 deletions

View File

@ -89,6 +89,6 @@ function escape(text) {
// we aren't going to bother with escaping attributes, so we won't worry about quotes
return text
.replaceAll('&', '&')
.replaceAll('<', '&gt;')
.replaceAll('>', '&lt;');
.replaceAll('<', '&lt;')
.replaceAll('>', '&gt;');
}