diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-09 18:07:14 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-09 18:07:24 -0500 | 
| commit | afca0c72801ec0256adc6f9a318ff00f0097e056 (patch) | |
| tree | 02257f631561478cc1595b14bb7590da4d890403 /org | |
| parent | xmls, copyright and license display (diff) | |
sqlite, html lite breakline related
Diffstat (limited to 'org')
| -rw-r--r-- | org/out_sqlite.org | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/org/out_sqlite.org b/org/out_sqlite.org index 4cea09a..36c0efd 100644 --- a/org/out_sqlite.org +++ b/org/out_sqlite.org @@ -553,6 +553,8 @@ 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,            "<br />")        .replaceAll(rgx.xhtml_line_break,   "<br />");      return _txt;    } @@ -594,6 +596,8 @@ string html_special_characters(string _txt){      .replaceAll(rgx.xhtml_less_than,    "<")      .replaceAll(rgx.xhtml_greater_than, ">")      .replaceAll(rgx.nbsp_char,          " ") +    .replaceAll(rgx.br_newline_inline,  "<br />") +    .replaceAll(rgx.br_line,            "<br />")      .replaceAll(rgx.xhtml_line_break,   "<br />");    return _txt;  } | 
