diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2018-10-03 11:16:23 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-04-10 15:14:15 -0400 |
commit | a7321dc8c96ff0006eb79a7181db4ab416e916f3 (patch) | |
tree | a51168fcb61018db2429d9bbe024ab1624f0f764 /org/output_xmls_css.org | |
parent | 0.1.0 renamed doc-reform, doc_reform (& rad) (diff) |
naming DocReform from SiSU
Diffstat (limited to 'org/output_xmls_css.org')
-rw-r--r-- | org/output_xmls_css.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org/output_xmls_css.org b/org/output_xmls_css.org index e63ada0..b95d0d9 100644 --- a/org/output_xmls_css.org +++ b/org/output_xmls_css.org @@ -24,8 +24,8 @@ default css settings +/ module doc_reform.output.xmls_css; -template SiSUcss() { - auto SiSUcss() { +template DocReformCss() { + auto DocReformCss() { string _css_html_seg=" <<css_shared>> <<css_html_seg>> @@ -40,15 +40,15 @@ template SiSUcss() { "; struct _css { auto html_seg_css() { - string _css = "/* SiSU css html seg stylesheet */\n" ~ _css_html_seg; + string _css = "/* DocReform css html seg stylesheet */\n" ~ _css_html_seg; return _css; } auto html_scroll_css() { - string _css = "/* SiSU css html scroll stylesheet */\n" ~ _css_html_scroll; + string _css = "/* DocReform css html scroll stylesheet */\n" ~ _css_html_scroll; return _css; } auto epub_css() { - string _css = "/* SiSU css epub stylesheet */\n" ~ _css_epub; + string _css = "/* DocReform css epub stylesheet */\n" ~ _css_epub; return _css; } } |