We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ecc05 commit 9d86627Copy full SHA for 9d86627
site/assets/css/site.scss
@@ -119,9 +119,23 @@ div.highlighter-rouge {
119
}
120
h5 {
121
font-size: 1.16em;
122
+ counter-increment: h5-section;
123
+ ~ h4 {
124
+ counter-reset: h5-section;
125
+ }
126
+ > span::before {
127
+ content: counter(h2-section) "." counter(h3-section) "." counter(h4-section) "." counter(h5-section) ".";
128
129
130
h6 {
131
font-size: 1em;
132
+ counter-increment: h6-section;
133
+ ~ h5 {
134
+ counter-reset: h6-section;
135
136
137
+ content: counter(h2-section) "." counter(h3-section) "." counter(h4-section) "." counter(h5-section) "." counter(h6-section) ".";
138
139
140
141
h2, h3 {
0 commit comments