Skip to content

Commit

Permalink
fix generated rss include zero width space (vuejs#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
rxliuli authored Dec 29, 2023
1 parent 749356b commit 0940c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vitepress/genFeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function genFeed(config: SiteConfig) {
id: `${baseUrl}${url}`,
link: `${baseUrl}${url}`,
description: excerpt,
content: html,
content: html?.replaceAll('​', ''),
author: [
{
name: frontmatter.author,
Expand Down

0 comments on commit 0940c94

Please sign in to comment.