diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-08-07 08:01:27 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | dfd85dee88c5b6061a573126b21319ab6bebe03c (patch) | |
tree | 6c7627a5817a0eee8fbfe8a7401a276df1c76faa /src/sdp/output/html.d | |
parent | html css using grid & flex (remove tables) (diff) |
css, separate files and reorganization
- separate files for html seg, scroll & epub
- output_xmls_css.org, reorganized org file
Diffstat (limited to 'src/sdp/output/html.d')
-rw-r--r-- | src/sdp/output/html.d | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sdp/output/html.d b/src/sdp/output/html.d index 8145417..7ed649e 100644 --- a/src/sdp/output/html.d +++ b/src/sdp/output/html.d @@ -451,8 +451,10 @@ template outputHTML() { if (!exists(pth_html.css)) { (pth_html.css).mkdirRecurse; } - auto f = File(pth_html.fn_css, "w"); - f.writeln(css.html_css); + auto f = File(pth_html.fn_seg_css, "w"); + f.writeln(css.html_seg_css); + f = File(pth_html.fn_scroll_css, "w"); + f.writeln(css.html_scroll_css); } catch (ErrnoException ex) { // Handle error |