bfahrenfort
2023-10-01 ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Fix: RSS title escaping (#521)

* Fix title escaping

* npm run format
1 files modified
6 ■■■■ changed files
quartz/plugins/emitters/contentIndex.ts 6 ●●●● patch | view | raw | blame | history
quartz/plugins/emitters/contentIndex.ts
@@ -68,9 +68,9 @@
    <channel>
      <title>${escapeHTML(cfg.pageTitle)}</title>
      <link>${root}</link>
      <description>${!!limit ? `Last ${limit} notes` : "Recent notes"} on ${
        cfg.pageTitle
      }</description>
      <description>${!!limit ? `Last ${limit} notes` : "Recent notes"} on ${escapeHTML(
        cfg.pageTitle,
      )}</description>
      <generator>Quartz -- quartz.jzhao.xyz</generator>
      ${items}
    </channel>