Skip to content

Commit

Permalink
Fix paragraph marker
Browse files Browse the repository at this point in the history
  • Loading branch information
Kara-Zor-El committed Nov 21, 2023
1 parent a2e4df9 commit 581f8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/providers/fixRichText.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ String fixRichText(String text) {
.replaceAll("</i>", "*")
.replaceAll("<b>", "**")
.replaceAll("</b>", "**")
.replaceAll("<p>", "\t")
.replaceAll("<p>", "\n\n")
.replaceAll("</p>", "")
.replaceAll("<u>", "__")
.replaceAll("</u>", "__")
Expand Down

0 comments on commit 581f8d1

Please sign in to comment.