add h1 count
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 6 Sep 2019 10:56:50 +0000 (11:56 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 6 Sep 2019 10:56:50 +0000 (11:56 +0100)
local.css

index 60983c69ad320da29fdcd48e3a0578d53de4b5f2..2586672b7c156f1d4ef642f539cfb1dce9b51a31 100644 (file)
--- a/local.css
+++ b/local.css
@@ -42,6 +42,10 @@ ol{
 }
 /* Counter Headings */
 body {
+counter-reset : h1;
+    }
+
+h1 {
 counter-reset : h2;
     }
 
@@ -61,6 +65,11 @@ h5 {
 counter-reset : h6;
     }
 
+#content h1:before {
+content : counter(h1,decimal) ". ";
+counter-increment : h1;
+    }
+
 #content h2:before {
 content : counter(h2,decimal) ". ";
 counter-increment : h2;
@@ -86,7 +95,7 @@ content : counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) ".
 counter-increment : h6;
     }
 
-h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
+h1.nocount:before, h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
 content : "";
 counter-increment : none;
     }