diff options
Diffstat (limited to 'src/sdp/output_html.d')
| -rw-r--r-- | src/sdp/output_html.d | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/sdp/output_html.d b/src/sdp/output_html.d index bf1d59c..ec8b74e 100644 --- a/src/sdp/output_html.d +++ b/src/sdp/output_html.d @@ -1,6 +1,6 @@ -template SiSUoutputHTML() { -  struct SDPoutputHTML { -    mixin SiSUoutputXHTMLs; +template outputHTML() { +  struct outputHTML { +    mixin outputXHTMLs;      void scroll_write_output_file(Fn,D)(        Fn fn_src, @@ -27,7 +27,7 @@ template SiSUoutputHTML() {        auto ref const C         contents,        auto ref T               doc_matters,      ) { -      auto xhtml_format = SDPoutputXHTMLs(); +      auto xhtml_format = outputXHTMLs();        auto rgx = Rgx();        string[] doc_html;        string[] doc; @@ -147,7 +147,7 @@ template SiSUoutputHTML() {        }        mixin SiSUpaths;        auto pth_html = HtmlPaths(); -      auto xhtml_format = SDPoutputXHTMLs(); +      auto xhtml_format = outputXHTMLs();        auto m = matchFirst(fn_src, rgx.src_fn);        try {          mkdirRecurse(pth_html.seg(fn_src)); @@ -169,7 +169,7 @@ template SiSUoutputHTML() {        auto ref const C         contents,        auto ref T               doc_matters,      ) { -      auto xhtml_format = SDPoutputXHTMLs(); +      auto xhtml_format = outputXHTMLs();        auto rgx = Rgx();        string[][string] doc_html;        string[] doc; | 
