diff options
Diffstat (limited to 'org/out_xmls_css.org')
-rw-r--r-- | org/out_xmls_css.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org/out_xmls_css.org b/org/out_xmls_css.org index b16bee0..a53c065 100644 --- a/org/out_xmls_css.org +++ b/org/out_xmls_css.org @@ -26,9 +26,9 @@ default css settings +/ module doc_reform.output.xmls_css; -template DocReformCss() { +template spineCss() { import std.format; - auto DocReformCss(M)(M doc_matters) { + auto spineCss(M)(M doc_matters) { <<css_insert_shared_insert_variable_indent_values>> <<css_insert_shared_insert_variable_ocn_color_values>> string _css_light_html_seg = format(q"┃ @@ -81,9 +81,9 @@ template DocReformCss() { ); auto css_() { struct _CSS { - string html_seg = "/* DocReform css html seg stylesheet */\n"; - string html_scroll = "/* DocReform css html scroll stylesheet */\n"; - string epub = "/* DocReform css epub stylesheet */\n"; + string html_seg = "/* spine css html seg stylesheet */\n"; + string html_scroll = "/* spine css html scroll stylesheet */\n"; + string epub = "/* spine css epub stylesheet */\n"; } return _CSS(); } |