File tree Expand file tree Collapse file tree 12 files changed +795
-379
lines changed Expand file tree Collapse file tree 12 files changed +795
-379
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,11 @@ Linking to sections in introduction
9
9
${MODEL } Introduction Library INTROduction
10
10
${MODEL } Importing importing
11
11
${MODEL } Importing Library Importing
12
- ${MODEL } Shortcuts ShortCuts
13
12
${MODEL } Keywords Keywords
14
13
15
14
Linking to sections in importing and keywords
16
15
${MODEL['inits'][0] } Introduction introduction
17
16
${MODEL['keywords'][1] } Importing Importing
18
- ${MODEL['keywords'][2] } Shortcuts shortcuts
19
17
20
18
Linking to keywords in introduction
21
19
${MODEL } Keyword Keyword
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ Simple TOC
9
9
... - `First entry`
10
10
... - `Second`
11
11
... - `Third=entry`
12
- ... - `Shortcuts`
13
12
... - `Keywords`
14
13
...
15
14
... = First entry =
@@ -34,8 +33,6 @@ TOC with inits and tags
34
33
... - `Second`
35
34
... - `3 `
36
35
... - `Importing`
37
- ... - `Shortcuts`
38
- ... - `Tags`
39
36
... - `Keywords`
40
37
...
41
38
... = Second =
@@ -54,8 +51,6 @@ TOC in generated HTML
54
51
... <li><a href="#Second" class="name">Second</a></li>
55
52
... <li><a href="#3" class="name">3</a></li>
56
53
... <li><a href="#Importing" class="name">Importing</a></li>
57
- ... <li><a href="#Shortcuts" class="name">Shortcuts</a></li>
58
- ... <li><a href="#Tags" class="name">Tags</a></li>
59
54
... <li><a href="#Keywords" class="name">Keywords</a></li>
60
55
... </ul>
61
56
... <h2 id="Second">Second</h2>
Original file line number Diff line number Diff line change
1
+ # introduction-container > h2 ,
2
+ .doc > h1 ,
3
+ .doc > h2 ,
4
+ .section > h1 ,
5
+ .section > h2 {
6
+ margin-top : 4rem ;
7
+ margin-bottom : 1rem ;
8
+ }
9
+
10
+ .doc > h3 , .section > h3 {
11
+ margin-top : 3rem ;
12
+ margin-bottom : 1rem ;
13
+ }
14
+
15
+ .doc > h4 , .section > h4 {
16
+ margin-top : 2rem ;
17
+ margin-bottom : 1rem ;
18
+ }
19
+
20
+ .doc > p , .section > p {
21
+ margin-top : 1rem ;
22
+ margin-bottom : 0.5rem ;
23
+ }
24
+ .doc > * : first-child {
25
+ margin-top : 0.1em ;
26
+ }
27
+ .doc table {
28
+ border : none;
29
+ background : transparent;
30
+ border-collapse : collapse;
31
+ empty-cells : show;
32
+ font-size : 0.9em ;
33
+ overflow-y : auto;
34
+ display : block;
35
+ }
36
+ .doc table th , .doc table td {
37
+ border : 1px solid var (--border-color );
38
+ background : transparent;
39
+ padding : 0.1em 0.3em ;
40
+ height : 1.2em ;
41
+ }
42
+ .doc table th {
43
+ text-align : center;
44
+ letter-spacing : 0.1em ;
45
+ }
46
+ .doc pre {
47
+ font-size : 1.1em ;
48
+ letter-spacing : 0.05em ;
49
+ background : var (--light-background-color );
50
+ overflow-y : auto;
51
+ padding : 0.3rem ;
52
+ border-radius : 3px ;
53
+ }
54
+
55
+ .doc code ,
56
+ .docutils .literal {
57
+ font-size : 1.1em ;
58
+ letter-spacing : 0.05em ;
59
+ background : var (--light-background-color );
60
+ padding : 1px ;
61
+ border-radius : 3px ;
62
+ }
63
+ .doc li {
64
+ list-style-position : inside;
65
+ list-style-type : square;
66
+ }
67
+ .doc img {
68
+ border : 1px solid # ccc ;
69
+ }
70
+ .doc hr {
71
+ background : # ccc ;
72
+ height : 1px ;
73
+ border : 0 ;
74
+ }
You can’t perform that action at this time.
0 commit comments