diff options
author | Ralph Amissah <ralph@amissah.com> | 2016-11-02 10:27:19 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:13 -0400 |
commit | 98314b3de50e356568524708951ca507c80b3af2 (patch) | |
tree | 9dac05207a3690ce25927eed79791d1df1fdbab0 /src/sdp/output_html.d | |
parent | 0.8.0 the document parts (& org babel tangle) (diff) |
cleaning (one hash key renamed)
Diffstat (limited to 'src/sdp/output_html.d')
-rw-r--r-- | src/sdp/output_html.d | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/sdp/output_html.d b/src/sdp/output_html.d index dc19e6c..d6a3b8c 100644 --- a/src/sdp/output_html.d +++ b/src/sdp/output_html.d @@ -112,27 +112,21 @@ template SiSUoutputHTML() { break; case "verse": body_ ~= html_para(obj); - // body_ ~= html_verse(obj); break; case "group": body_ ~= html_para(obj); - // body_ ~= html_group(obj); break; case "block": body_ ~= html_para(obj); - // body_ ~= html_block(obj); break; case "quote": body_ ~= html_para(obj); - // body_ ~= html_quote(obj); break; case "table": body_ ~= html_para(obj); - // body_ ~= html_table(obj); break; case "code": body_ ~= html_para(obj); - // body_ ~= html_code(obj); break; default: body_ ~= html_para(obj); @@ -147,8 +141,6 @@ template SiSUoutputHTML() { auto pth_html = "en/html"; auto pth_seg = pth_html ~ "/" ~ m["fn_base"]; auto pth_html_fn = pth_html ~ "/" ~ fn; - // auto pth_css= "_sisu/css"; - // auto pth_css_fn= pth_css ~ "/html.css"; try { mkdirRecurse(pth_seg); auto f = File(pth_html_fn, "w"); @@ -1456,9 +1448,6 @@ template SiSUoutputHTML() { mkdirRecurse(pth_css); auto f = File(pth_css_fn, "w"); f.writeln(html_css); - // foreach (o; doc) { - // f.writeln(o); - // } } catch (ErrnoException ex) { // Handle error |