aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output_html.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-01-26 13:51:37 -0500
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commitd6569741844800684461d641fd28b5aa6fce2a8c (patch)
tree02640aace02554cdf9caff52fec2cc5c15fc2c50 /src/sdp/output_html.d
parentregex template, made more uniform (diff)
output, template & struct names
Diffstat (limited to 'src/sdp/output_html.d')
-rw-r--r--src/sdp/output_html.d12
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;