Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
sbouchet authored Oct 13, 2023
1 parent 466348a commit 8757332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func main() {
// replace #<
data = strings.Replace(data, "#&lt;", "#&amp;lt;", -1)
// replace <-
data = strings.Replace(data, "<-", "&lt;-", -1)
data = strings.Replace(data, "<-", "&amp;lt;-", -1)


f, err := os.OpenFile("rss.xml", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
Expand Down

0 comments on commit 8757332

Please sign in to comment.