diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-06-06 17:47:49 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | 364e6888fb5e1f5a8dd3fc47b80db0fa8bf9953d (patch) | |
tree | ae064b37173be8aecf1a038cfde03b84ab142678 /src/sdp/output/xmls.d | |
parent | headings & toc, monospace and links, fix (diff) |
epub, special characters in content.opf header, fix
Diffstat (limited to 'src/sdp/output/xmls.d')
-rw-r--r-- | src/sdp/output/xmls.d | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sdp/output/xmls.d b/src/sdp/output/xmls.d index ed9b548..2482f28 100644 --- a/src/sdp/output/xmls.d +++ b/src/sdp/output/xmls.d @@ -30,6 +30,15 @@ template outputXHTMLs() { } return _txt; } + string special_characters_text(string _txt){ + _txt = (_txt) + .replaceAll(rgx.xhtml_ampersand, "&") + .replaceAll(rgx.xhtml_quotation, """) + .replaceAll(rgx.xhtml_less_than, "<") + .replaceAll(rgx.xhtml_greater_than, ">") + .replaceAll(rgx.nbsp_char, " "); + return _txt; + } string font_face(string _txt){ _txt = (_txt) .replaceAll(rgx.inline_emphasis, ("<em>$1</em>")) |