diff options
Diffstat (limited to 'src/doc_reform/io_out/sqlite.d')
-rw-r--r-- | src/doc_reform/io_out/sqlite.d | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/doc_reform/io_out/sqlite.d b/src/doc_reform/io_out/sqlite.d index 06a764f..a546998 100644 --- a/src/doc_reform/io_out/sqlite.d +++ b/src/doc_reform/io_out/sqlite.d @@ -240,8 +240,9 @@ template SQLiteFormatAndLoadObject() { .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; } @@ -276,8 +277,9 @@ template SQLiteFormatAndLoadObject() { .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; } |