Skip to content

Commit

Permalink
Fix arrows in XML -> and <-
Browse files Browse the repository at this point in the history
  • Loading branch information
mliezun committed Jan 10, 2024
1 parent 110b584 commit 331fe2b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/feed.gr
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ fn generate_feed(posts) {
"\">=\"": "\"&gt;=\"",
"\"<\"": "\"&lt;\"",
"\"<=\"": "\"&lt;=\"",
"->": "-&gt;",
"<-": "-&lt;",
}
for r, n in replacements {
text = u.replace(text, r, n)
Expand Down

0 comments on commit 331fe2b

Please sign in to comment.