aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output_xmls_css.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-05-01 18:46:11 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commita9a46fca7397aaa357bfdc2b98e181617bb6887b (patch)
tree4a3c214b8139204cdb4cce723f14da7bd34a939f /src/sdp/output_xmls_css.d
parentxml family, special characters, deal with once (diff)
xmls work particularly with epub output
Diffstat (limited to 'src/sdp/output_xmls_css.d')
-rw-r--r--src/sdp/output_xmls_css.d8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/sdp/output_xmls_css.d b/src/sdp/output_xmls_css.d
index 8d7c0ff..c746b16 100644
--- a/src/sdp/output_xmls_css.d
+++ b/src/sdp/output_xmls_css.d
@@ -848,8 +848,12 @@ template SiSUcss() {
color: #000000;
background-color: #f9f9aa;
}
+ /* in toc no list numbering */
+ nav#toc ol {
+ list-style-type: none;
+ }
";
- struct _CSS {
+ struct _css {
auto html_css() {
string _css = "/* SiSU css html stylesheet */\n" ~ css_shared;
return _css;
@@ -859,6 +863,6 @@ template SiSUcss() {
return _css;
}
}
- return _CSS();
+ return _css();
}
}