aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_sqlite.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/out_sqlite.org')
-rw-r--r--org/out_sqlite.org6
1 files changed, 4 insertions, 2 deletions
diff --git a/org/out_sqlite.org b/org/out_sqlite.org
index cfe7892..a628cc6 100644
--- a/org/out_sqlite.org
+++ b/org/out_sqlite.org
@@ -551,8 +551,9 @@ string munge_html(M,O)(
.replaceAll(rgx.xhtml_less_than, "<")
.replaceAll(rgx.xhtml_greater_than, ">")
.replaceAll(rgx.nbsp_char, " ")
- .replaceAll(rgx.br_newline_inline, "<br />")
+ .replaceAll(rgx.br_line_inline, "<br />")
.replaceAll(rgx.br_line, "<br />")
+ .replaceAll(rgx.br_line_spaced, "<br /><br />")
.replaceAll(rgx.xhtml_line_break, "<br />");
return _txt;
}
@@ -593,8 +594,9 @@ string html_special_characters(string _txt){
.replaceAll(rgx.xhtml_less_than, "&#60;")
.replaceAll(rgx.xhtml_greater_than, "&#62;")
.replaceAll(rgx.nbsp_char, " ")
- .replaceAll(rgx.br_newline_inline, "<br />")
+ .replaceAll(rgx.br_line_inline, "<br />")
.replaceAll(rgx.br_line, "<br />")
+ .replaceAll(rgx.br_line_spaced, "<br /><br />")
.replaceAll(rgx.xhtml_line_break, "<br />");
return _txt;
}