diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2018-12-30 20:55:09 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-17 16:59:38 -0400 |
commit | ac868b590106763c2b3223a1af5cf9f49cce6ca5 (patch) | |
tree | 6865d4ce6e8441a5c9922097828ad9ddf1658c01 /src/doc_reform/output/sqlite.d | |
parent | 0.3.3 org mode behavior (diff) |
cosmeticdoc-reform_v0.3.3
Diffstat (limited to 'src/doc_reform/output/sqlite.d')
-rw-r--r-- | src/doc_reform/output/sqlite.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc_reform/output/sqlite.d b/src/doc_reform/output/sqlite.d index d09b9b8..bf0d546 100644 --- a/src/doc_reform/output/sqlite.d +++ b/src/doc_reform/output/sqlite.d @@ -286,7 +286,7 @@ template SQLiteFormatAndLoadObject() { if (obj.has.inline_links) { if ((_txt.match(rgx.mark_internal_site_lnk)) && (_xml_type == "scroll")) { // conditions reversed to avoid: gdc compiled program run segfault - _txt = (_txt).replaceAll( + _txt = _txt.replaceAll( rgx.inline_seg_link, "$1"); } @@ -340,7 +340,7 @@ template SQLiteFormatAndLoadObject() { ); } } - _txt = (_txt) + _txt = _txt .replaceAll( rgx.inline_link_fn_suffix, ("$1.html")) @@ -380,7 +380,7 @@ template SQLiteFormatAndLoadObject() { ) { if (obj.has.inline_notes_reg) { // _txt = font_face(_txt); - _txt = (_txt).replaceAll( + _txt = _txt.replaceAll( rgx.inline_notes_delimiter_al_regular_number_note, ("<a href=\"#note_$1\"><note id=\"noteref_$1\"> <sup>$1</sup> </note></a>") ); @@ -421,7 +421,7 @@ template SQLiteFormatAndLoadObject() { "</p>" ); } - _txt = (_txt).replaceAll( + _txt = _txt.replaceAll( rgx.inline_notes_delimiter_al_regular_number_note, ("<a href=\"#note_$1\"><note id=\"noteref_$1\"> <sup>$1</sup> </note></a>") ); |