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 c8b6fc3 commit f02d40fCopy full SHA for f02d40f
docs/_static/local.css
@@ -1,19 +1,25 @@
1
/** Add a counter before subsections **/
2
-h1:not(.tippy-header) {
+h1 {
3
counter-reset: subsection;
4
text-decoration: underline;
5
}
6
-h2:not(.tippy-header) {
+h2 {
7
counter-reset: subsubsection;
8
9
-h2:not(.tippy-header)::before {
+h2::before {
10
counter-increment: subsection;
11
content: counter(subsection) ". ";
12
13
-h3:not(.tippy-header)::before {
+.tippy-box h2::before {
14
+ content: unset;
15
+}
16
+h3::before {
17
counter-increment: subsubsection;
18
content: counter(subsection) "." counter(subsubsection) ". ";
19
20
+.tippy-box h3::before {
21
22
23
24
/** MyST examples */
25
.myst-example {
0 commit comments