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 /org/output.org | |
parent | 0.8.0 the document parts (& org babel tangle) (diff) |
cleaning (one hash key renamed)
Diffstat (limited to 'org/output.org')
-rw-r--r-- | org/output.org | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/org/output.org b/org/output.org index 1c9902a..a9ad6fd 100644 --- a/org/output.org +++ b/org/output.org @@ -154,27 +154,21 @@ void scroll(C)( 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); @@ -189,8 +183,6 @@ void scroll(C)( 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"); @@ -1504,9 +1496,6 @@ auto css_write() { 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 @@ -1550,8 +1539,6 @@ template SiSUoutputHub() { } if (opt_action_bool["text"]) { writeln("text processing"); - // auto text=SDPoutput_text(); - // text.scroll(contents, bookindex_unordered_hashes, biblio, dochead_make, dochead_meta, fn_src, opt_action_bool); } if (opt_action_bool["html"]) { mixin SiSUoutputHTML; |