Skip to content

Commit 00da777

Browse files
committed
Update documentation
1 parent 30dce32 commit 00da777

File tree

75 files changed

+10870
-4208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+10870
-4208
lines changed

404.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="search" title="Search" href="/search.html" />
1212

1313

14-
<title>Python-Markdown 3.7 documentation</title>
14+
<title>Python-Markdown 3.8 documentation</title>
1515
<link rel="stylesheet" href="/static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="/static/pygments.css" type="text/css" />
1717
<link rel="stylesheet" href="/assets/_mkdocstrings.css" type="text/css" />
@@ -36,7 +36,7 @@ <h3>Navigation</h3>
3636
<li><img src="/py.png"
3737
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
3838
<li class="nav-item nav-item-0">
39-
<a href="/.">Python-Markdown 3.7 documentation</a> &#187;
39+
<a href="/.">Python-Markdown 3.8 documentation</a> &#187;
4040
</li>
4141
</ul>
4242
</div>
@@ -95,19 +95,19 @@ <h3>Navigation</h3>
9595
<li><img src="/py.png"
9696
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
9797
<li class="nav-item nav-item-0">
98-
<a href="/.">Python-Markdown 3.7 documentation</a> &#187;
98+
<a href="/.">Python-Markdown 3.8 documentation</a> &#187;
9999
</li>
100100
</ul>
101101
</div>
102102
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
103-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.0.
103+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.1.
104104
</div>
105105
<script>var base_url = '/';</script>
106106
<script src="/search/main.js"></script>
107107

108108
<!--
109-
MkDocs version : 1.6.0
110-
Docs Build Date UTC : 2024-08-16 15:55:07.750658+00:00
109+
MkDocs version : 1.6.1
110+
Docs Build Date UTC : 2025-04-09 17:38:32.424762+00:00
111111
-->
112112
</body>
113113
</html>

assets/_mkdocstrings.css

+58-6
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,55 @@
2626
float: right;
2727
}
2828

29+
/* Parameter headings must be inline, not blocks. */
30+
.doc-heading-parameter {
31+
display: inline;
32+
}
33+
34+
/* Prefer space on the right, not the left of parameter permalinks. */
35+
.doc-heading-parameter .headerlink {
36+
margin-left: 0 !important;
37+
margin-right: 0.2rem;
38+
}
39+
2940
/* Backward-compatibility: docstring section titles in bold. */
3041
.doc-section-title {
3142
font-weight: bold;
3243
}
3344

45+
/* Backlinks crumb separator. */
46+
.doc-backlink-crumb {
47+
display: inline-flex;
48+
gap: .2rem;
49+
white-space: nowrap;
50+
align-items: center;
51+
vertical-align: middle;
52+
}
53+
.doc-backlink-crumb:not(:first-child)::before {
54+
background-color: var(--md-default-fg-color--lighter);
55+
content: "";
56+
display: inline;
57+
height: 1rem;
58+
--md-path-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');
59+
-webkit-mask-image: var(--md-path-icon);
60+
mask-image: var(--md-path-icon);
61+
width: 1rem;
62+
}
63+
.doc-backlink-crumb.last {
64+
font-weight: bold;
65+
}
66+
3467
/* Symbols in Navigation and ToC. */
35-
:root,
68+
:root, :host,
3669
[data-md-color-scheme="default"] {
70+
--doc-symbol-parameter-fg-color: #df50af;
3771
--doc-symbol-attribute-fg-color: #953800;
3872
--doc-symbol-function-fg-color: #8250df;
3973
--doc-symbol-method-fg-color: #8250df;
4074
--doc-symbol-class-fg-color: #0550ae;
4175
--doc-symbol-module-fg-color: #5cad0f;
4276

77+
--doc-symbol-parameter-bg-color: #df50af1a;
4378
--doc-symbol-attribute-bg-color: #9538001a;
4479
--doc-symbol-function-bg-color: #8250df1a;
4580
--doc-symbol-method-bg-color: #8250df1a;
@@ -48,12 +83,14 @@
4883
}
4984

5085
[data-md-color-scheme="slate"] {
86+
--doc-symbol-parameter-fg-color: #ffa8cc;
5187
--doc-symbol-attribute-fg-color: #ffa657;
5288
--doc-symbol-function-fg-color: #d2a8ff;
5389
--doc-symbol-method-fg-color: #d2a8ff;
5490
--doc-symbol-class-fg-color: #79c0ff;
5591
--doc-symbol-module-fg-color: #baff79;
5692

93+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
5794
--doc-symbol-attribute-bg-color: #ffa6571a;
5895
--doc-symbol-function-bg-color: #d2a8ff1a;
5996
--doc-symbol-method-bg-color: #d2a8ff1a;
@@ -68,7 +105,18 @@ code.doc-symbol {
68105
font-weight: bold;
69106
}
70107

71-
code.doc-symbol-attribute {
108+
code.doc-symbol-parameter,
109+
a code.doc-symbol-parameter {
110+
color: var(--doc-symbol-parameter-fg-color);
111+
background-color: var(--doc-symbol-parameter-bg-color);
112+
}
113+
114+
code.doc-symbol-parameter::after {
115+
content: "param";
116+
}
117+
118+
code.doc-symbol-attribute,
119+
a code.doc-symbol-attribute {
72120
color: var(--doc-symbol-attribute-fg-color);
73121
background-color: var(--doc-symbol-attribute-bg-color);
74122
}
@@ -77,7 +125,8 @@ code.doc-symbol-attribute::after {
77125
content: "attr";
78126
}
79127

80-
code.doc-symbol-function {
128+
code.doc-symbol-function,
129+
a code.doc-symbol-function {
81130
color: var(--doc-symbol-function-fg-color);
82131
background-color: var(--doc-symbol-function-bg-color);
83132
}
@@ -86,7 +135,8 @@ code.doc-symbol-function::after {
86135
content: "func";
87136
}
88137

89-
code.doc-symbol-method {
138+
code.doc-symbol-method,
139+
a code.doc-symbol-method {
90140
color: var(--doc-symbol-method-fg-color);
91141
background-color: var(--doc-symbol-method-bg-color);
92142
}
@@ -95,7 +145,8 @@ code.doc-symbol-method::after {
95145
content: "meth";
96146
}
97147

98-
code.doc-symbol-class {
148+
code.doc-symbol-class,
149+
a code.doc-symbol-class {
99150
color: var(--doc-symbol-class-fg-color);
100151
background-color: var(--doc-symbol-class-bg-color);
101152
}
@@ -104,7 +155,8 @@ code.doc-symbol-class::after {
104155
content: "class";
105156
}
106157

107-
code.doc-symbol-module {
158+
code.doc-symbol-module,
159+
a code.doc-symbol-module {
108160
color: var(--doc-symbol-module-fg-color);
109161
background-color: var(--doc-symbol-module-bg-color);
110162
}

authors/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="search" title="Search" href="../search.html" />
1212

1313
<link rel="prev" title="Changelog" href="../changelog/" />
14-
<title>Authors &#8212; Python-Markdown 3.7 documentation</title>
14+
<title>Authors &#8212; Python-Markdown 3.8 documentation</title>
1515
<link rel="stylesheet" href="../static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="../static/pygments.css" type="text/css" />
1717
<link rel="stylesheet" href="../assets/_mkdocstrings.css" type="text/css" />
@@ -38,7 +38,7 @@ <h3>Navigation</h3>
3838
<li><img src="../py.png"
3939
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
4040
<li class="nav-item nav-item-0">
41-
<a href="..">Python-Markdown 3.7 documentation</a> &#187;
41+
<a href="..">Python-Markdown 3.8 documentation</a> &#187;
4242
</li>
4343

4444

@@ -190,7 +190,7 @@ <h3>Navigation</h3>
190190
<li><img src="../py.png"
191191
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
192192
<li class="nav-item nav-item-0">
193-
<a href="..">Python-Markdown 3.7 documentation</a> &#187;
193+
<a href="..">Python-Markdown 3.8 documentation</a> &#187;
194194
</li>
195195

196196

@@ -210,14 +210,14 @@ <h3>Navigation</h3>
210210
</ul>
211211
</div>
212212
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
213-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.0.
213+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.1.
214214
</div>
215215
<script>var base_url = '..';</script>
216216
<script src="../search/main.js"></script>
217217

218218
<!--
219-
MkDocs version : 1.6.0
220-
Docs Build Date UTC : 2024-08-16 15:55:07.753790+00:00
219+
MkDocs version : 1.6.1
220+
Docs Build Date UTC : 2025-04-09 17:38:32.430642+00:00
221221
-->
222222
</body>
223223
</html>

change_log/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="search" title="Search" href="../search.html" />
1212

1313

14-
<title>Change Log &#8212; Python-Markdown 3.7 documentation</title>
14+
<title>Change Log &#8212; Python-Markdown 3.8 documentation</title>
1515
<link rel="stylesheet" href="../static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="../static/pygments.css" type="text/css" />
1717
<link rel="stylesheet" href="../assets/_mkdocstrings.css" type="text/css" />
@@ -36,7 +36,7 @@ <h3>Navigation</h3>
3636
<li><img src="../py.png"
3737
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
3838
<li class="nav-item nav-item-0">
39-
<a href="..">Python-Markdown 3.7 documentation</a> &#187;
39+
<a href="..">Python-Markdown 3.8 documentation</a> &#187;
4040
</li>
4141

4242

@@ -260,7 +260,7 @@ <h3>Navigation</h3>
260260
<li><img src="../py.png"
261261
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
262262
<li class="nav-item nav-item-0">
263-
<a href="..">Python-Markdown 3.7 documentation</a> &#187;
263+
<a href="..">Python-Markdown 3.8 documentation</a> &#187;
264264
</li>
265265

266266

@@ -277,14 +277,14 @@ <h3>Navigation</h3>
277277
</ul>
278278
</div>
279279
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
280-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.0.
280+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.1.
281281
</div>
282282
<script>var base_url = '..';</script>
283283
<script src="../search/main.js"></script>
284284

285285
<!--
286-
MkDocs version : 1.6.0
287-
Docs Build Date UTC : 2024-08-16 15:55:07.783438+00:00
286+
MkDocs version : 1.6.1
287+
Docs Build Date UTC : 2025-04-09 17:38:32.456632+00:00
288288
-->
289289
</body>
290290
</html>

change_log/release-2.0/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="search" title="Search" href="../../search.html" />
1212

1313

14-
<title>Release Notes for v2.0 &#8212; Python-Markdown 3.7 documentation</title>
14+
<title>Release Notes for v2.0 &#8212; Python-Markdown 3.8 documentation</title>
1515
<link rel="stylesheet" href="../../static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="../../static/pygments.css" type="text/css" />
1717
<link rel="stylesheet" href="../../assets/_mkdocstrings.css" type="text/css" />
@@ -36,7 +36,7 @@ <h3>Navigation</h3>
3636
<li><img src="../../py.png"
3737
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
3838
<li class="nav-item nav-item-0">
39-
<a href="../..">Python-Markdown 3.7 documentation</a> &#187;
39+
<a href="../..">Python-Markdown 3.8 documentation</a> &#187;
4040
</li>
4141

4242

@@ -168,7 +168,7 @@ <h3>Navigation</h3>
168168
<li><img src="../../py.png"
169169
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
170170
<li class="nav-item nav-item-0">
171-
<a href="../..">Python-Markdown 3.7 documentation</a> &#187;
171+
<a href="../..">Python-Markdown 3.8 documentation</a> &#187;
172172
</li>
173173

174174

@@ -185,14 +185,14 @@ <h3>Navigation</h3>
185185
</ul>
186186
</div>
187187
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
188-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.0.
188+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.1.
189189
</div>
190190
<script>var base_url = '../..';</script>
191191
<script src="../../search/main.js"></script>
192192

193193
<!--
194-
MkDocs version : 1.6.0
195-
Docs Build Date UTC : 2024-08-16 15:55:07.785936+00:00
194+
MkDocs version : 1.6.1
195+
Docs Build Date UTC : 2025-04-09 17:38:32.458811+00:00
196196
-->
197197
</body>
198198
</html>

change_log/release-2.1/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="search" title="Search" href="../../search.html" />
1212

1313

14-
<title>Release Notes for v2.1 &#8212; Python-Markdown 3.7 documentation</title>
14+
<title>Release Notes for v2.1 &#8212; Python-Markdown 3.8 documentation</title>
1515
<link rel="stylesheet" href="../../static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="../../static/pygments.css" type="text/css" />
1717
<link rel="stylesheet" href="../../assets/_mkdocstrings.css" type="text/css" />
@@ -36,7 +36,7 @@ <h3>Navigation</h3>
3636
<li><img src="../../py.png"
3737
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
3838
<li class="nav-item nav-item-0">
39-
<a href="../..">Python-Markdown 3.7 documentation</a> &#187;
39+
<a href="../..">Python-Markdown 3.8 documentation</a> &#187;
4040
</li>
4141

4242

@@ -223,7 +223,7 @@ <h3>Navigation</h3>
223223
<li><img src="../../py.png"
224224
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
225225
<li class="nav-item nav-item-0">
226-
<a href="../..">Python-Markdown 3.7 documentation</a> &#187;
226+
<a href="../..">Python-Markdown 3.8 documentation</a> &#187;
227227
</li>
228228

229229

@@ -240,14 +240,14 @@ <h3>Navigation</h3>
240240
</ul>
241241
</div>
242242
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
243-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.0.
243+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.6.1.
244244
</div>
245245
<script>var base_url = '../..';</script>
246246
<script src="../../search/main.js"></script>
247247

248248
<!--
249-
MkDocs version : 1.6.0
250-
Docs Build Date UTC : 2024-08-16 15:55:07.787316+00:00
249+
MkDocs version : 1.6.1
250+
Docs Build Date UTC : 2025-04-09 17:38:32.459851+00:00
251251
-->
252252
</body>
253253
</html>

0 commit comments

Comments
 (0)