diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-04 23:50:19 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-05 18:26:02 -0500 |
commit | 94f56fab73553aae75a9e92a7707c952c1e763fc (patch) | |
tree | b42a58993bf3e4d0ee82cbbdb347b033aa38d8b2 /src/doc_reform/io_out/xmls.d | |
parent | epub, work on (diff) |
epub, navigation
Diffstat (limited to 'src/doc_reform/io_out/xmls.d')
-rw-r--r-- | src/doc_reform/io_out/xmls.d | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doc_reform/io_out/xmls.d b/src/doc_reform/io_out/xmls.d index 6191fa9..fd9305a 100644 --- a/src/doc_reform/io_out/xmls.d +++ b/src/doc_reform/io_out/xmls.d @@ -100,6 +100,7 @@ template outputXHTMLs() { .replaceAll(rgx.xhtml_less_than, "<") // "<" .replaceAll(rgx.xhtml_greater_than, ">") // ">" .replaceAll(rgx.br_line, "<br />") + .replaceAll(rgx.br_newline_inline, "<br />") .replaceAll(rgx.nbsp_char, " "); return _txt; } |