diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-01-26 13:51:37 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | d6569741844800684461d641fd28b5aa6fce2a8c (patch) | |
tree | 02640aace02554cdf9caff52fec2cc5c15fc2c50 /src/sdp/output_epub.d | |
parent | regex template, made more uniform (diff) |
output, template & struct names
Diffstat (limited to 'src/sdp/output_epub.d')
-rw-r--r-- | src/sdp/output_epub.d | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sdp/output_epub.d b/src/sdp/output_epub.d index 8faf9e1..c7c13ef 100644 --- a/src/sdp/output_epub.d +++ b/src/sdp/output_epub.d @@ -1,7 +1,7 @@ -template SiSUoutputEPub() { - struct SDPoutputEPub { +template outputEPub() { + struct outputEPub { mixin InternalMarkup; - mixin SiSUoutputXHTMLs; + mixin outputXHTMLs; string epub_mimetypes() { string o; o = format(q"¶application/epub+zip¶"); @@ -148,7 +148,7 @@ template SiSUoutputEPub() { auto ref const C contents, auto ref T doc_matters, ) { - auto xhtml_format = SDPoutputXHTMLs(); + auto xhtml_format = outputXHTMLs(); auto rgx = Rgx(); // string[] toc; string[][string] doc_epub; @@ -337,7 +337,7 @@ template SiSUoutputEPub() { mixin SiSUpaths; auto pth_epub = EpubPaths(); // doc = xhtml_format.scroll_head ~ doc_epub ~ xhtml_format.tail; - auto xhtml_format = SDPoutputXHTMLs(); + auto xhtml_format = outputXHTMLs(); try { mkdirRecurse(pth_epub.doc_meta_inf(fn_src)); mkdirRecurse(pth_epub.doc_oebps_css(fn_src)); |