Skip to content

Commit 863acff

Browse files
committed
Update documentation
1 parent 1876f89 commit 863acff

File tree

77 files changed

+6578
-2440
lines changed

Some content is hidden

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

77 files changed

+6578
-2440
lines changed

404.html

Lines changed: 13 additions & 4 deletions
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.5.1 documentation</title>
14+
<title>Python-Markdown 3.5.2 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.5.1 documentation</a> &#187;
39+
<a href="/.">Python-Markdown 3.5.2 documentation</a> &#187;
4040
</li>
4141
</ul>
4242
</div>
@@ -67,6 +67,14 @@ <h3>This Page</h3>
6767
<li><a href="https://github.com/Python-Markdown/markdown/issues">Report a Bug</a></li>
6868
</ul>
6969
</div>
70+
<div id="searchbox" style="display: none" role="search">
71+
<h3>Quick search</h3>
72+
<form class="search" action="/search.html" method="get">
73+
<div><input type="text" name="q" placeholder="Search docs" /></div>
74+
<div><input type="submit" value="Go" /></div>
75+
</form>
76+
</div>
77+
<script type="text/javascript">$('#searchbox').show(0);</script>
7078

7179
</div>
7280
</div>
@@ -87,18 +95,19 @@ <h3>Navigation</h3>
8795
<li><img src="/py.png"
8896
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
8997
<li class="nav-item nav-item-0">
90-
<a href="/.">Python-Markdown 3.5.1 documentation</a> &#187;
98+
<a href="/.">Python-Markdown 3.5.2 documentation</a> &#187;
9199
</li>
92100
</ul>
93101
</div>
94102
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
95103
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
96104
</div>
97105
<script>var base_url = '/';</script>
106+
<script src="/search/main.js"></script>
98107

99108
<!--
100109
MkDocs version : 1.5.3
101-
Docs Build Date UTC : 2023-11-06 03:08:46.342517+00:00
110+
Docs Build Date UTC : 2024-01-10 15:19:15.681217+00:00
102111
-->
103112
</body>
104113
</html>

assets/_mkdocstrings.css

Lines changed: 68 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -26,39 +26,84 @@
2626
float: right;
2727
}
2828

29-
/* Keep headings consistent. */
30-
h1.doc-heading,
31-
h2.doc-heading,
32-
h3.doc-heading,
33-
h4.doc-heading,
34-
h5.doc-heading,
35-
h6.doc-heading {
36-
font-weight: 400;
37-
line-height: 1.5;
38-
color: inherit;
39-
text-transform: none;
29+
/* Symbols in Navigation and ToC. */
30+
:root,
31+
[data-md-color-scheme="default"] {
32+
--doc-symbol-attribute-fg-color: #953800;
33+
--doc-symbol-function-fg-color: #8250df;
34+
--doc-symbol-method-fg-color: #8250df;
35+
--doc-symbol-class-fg-color: #0550ae;
36+
--doc-symbol-module-fg-color: #5cad0f;
37+
38+
--doc-symbol-attribute-bg-color: #9538001a;
39+
--doc-symbol-function-bg-color: #8250df1a;
40+
--doc-symbol-method-bg-color: #8250df1a;
41+
--doc-symbol-class-bg-color: #0550ae1a;
42+
--doc-symbol-module-bg-color: #5cad0f1a;
43+
}
44+
45+
[data-md-color-scheme="slate"] {
46+
--doc-symbol-attribute-fg-color: #ffa657;
47+
--doc-symbol-function-fg-color: #d2a8ff;
48+
--doc-symbol-method-fg-color: #d2a8ff;
49+
--doc-symbol-class-fg-color: #79c0ff;
50+
--doc-symbol-module-fg-color: #baff79;
51+
52+
--doc-symbol-attribute-bg-color: #ffa6571a;
53+
--doc-symbol-function-bg-color: #d2a8ff1a;
54+
--doc-symbol-method-bg-color: #d2a8ff1a;
55+
--doc-symbol-class-bg-color: #79c0ff1a;
56+
--doc-symbol-module-bg-color: #baff791a;
57+
}
58+
59+
code.doc-symbol {
60+
border-radius: .1rem;
61+
font-size: .85em;
62+
padding: 0 .3em;
63+
font-weight: bold;
64+
}
65+
66+
code.doc-symbol-attribute {
67+
color: var(--doc-symbol-attribute-fg-color);
68+
background-color: var(--doc-symbol-attribute-bg-color);
69+
}
70+
71+
code.doc-symbol-attribute::after {
72+
content: "attr";
73+
}
74+
75+
code.doc-symbol-function {
76+
color: var(--doc-symbol-function-fg-color);
77+
background-color: var(--doc-symbol-function-bg-color);
78+
}
79+
80+
code.doc-symbol-function::after {
81+
content: "func";
4082
}
4183

42-
h1.doc-heading {
43-
font-size: 1.6rem;
84+
code.doc-symbol-method {
85+
color: var(--doc-symbol-method-fg-color);
86+
background-color: var(--doc-symbol-method-bg-color);
4487
}
4588

46-
h2.doc-heading {
47-
font-size: 1.2rem;
89+
code.doc-symbol-method::after {
90+
content: "meth";
4891
}
4992

50-
h3.doc-heading {
51-
font-size: 1.15rem;
93+
code.doc-symbol-class {
94+
color: var(--doc-symbol-class-fg-color);
95+
background-color: var(--doc-symbol-class-bg-color);
5296
}
5397

54-
h4.doc-heading {
55-
font-size: 1.10rem;
98+
code.doc-symbol-class::after {
99+
content: "class";
56100
}
57101

58-
h5.doc-heading {
59-
font-size: 1.05rem;
102+
code.doc-symbol-module {
103+
color: var(--doc-symbol-module-fg-color);
104+
background-color: var(--doc-symbol-module-bg-color);
60105
}
61106

62-
h6.doc-heading {
63-
font-size: 1rem;
107+
code.doc-symbol-module::after {
108+
content: "mod";
64109
}

authors/index.html

Lines changed: 13 additions & 4 deletions
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.5.1 documentation</title>
14+
<title>Authors &#8212; Python-Markdown 3.5.2 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.5.1 documentation</a> &#187;
41+
<a href="..">Python-Markdown 3.5.2 documentation</a> &#187;
4242
</li>
4343

4444

@@ -160,6 +160,14 @@ <h3>This Page</h3>
160160
<li><a href="https://github.com/Python-Markdown/markdown/edit/master/docs/authors.md">Edit on GitHub</a></li>
161161
</ul>
162162
</div>
163+
<div id="searchbox" style="display: none" role="search">
164+
<h3>Quick search</h3>
165+
<form class="search" action="../search.html" method="get">
166+
<div><input type="text" name="q" placeholder="Search docs" /></div>
167+
<div><input type="submit" value="Go" /></div>
168+
</form>
169+
</div>
170+
<script type="text/javascript">$('#searchbox').show(0);</script>
163171

164172
</div>
165173
</div>
@@ -182,7 +190,7 @@ <h3>Navigation</h3>
182190
<li><img src="../py.png"
183191
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
184192
<li class="nav-item nav-item-0">
185-
<a href="..">Python-Markdown 3.5.1 documentation</a> &#187;
193+
<a href="..">Python-Markdown 3.5.2 documentation</a> &#187;
186194
</li>
187195

188196

@@ -205,10 +213,11 @@ <h3>Navigation</h3>
205213
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
206214
</div>
207215
<script>var base_url = '..';</script>
216+
<script src="../search/main.js"></script>
208217

209218
<!--
210219
MkDocs version : 1.5.3
211-
Docs Build Date UTC : 2023-11-06 03:08:46.344541+00:00
220+
Docs Build Date UTC : 2024-01-10 15:19:15.692764+00:00
212221
-->
213222
</body>
214223
</html>

change_log/index.html

Lines changed: 13 additions & 4 deletions
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.5.1 documentation</title>
14+
<title>Change Log &#8212; Python-Markdown 3.5.2 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.5.1 documentation</a> &#187;
39+
<a href="..">Python-Markdown 3.5.2 documentation</a> &#187;
4040
</li>
4141

4242

@@ -232,6 +232,14 @@ <h3>This Page</h3>
232232
<li><a href="https://github.com/Python-Markdown/markdown/edit/master/docs/change_log/index.md">Edit on GitHub</a></li>
233233
</ul>
234234
</div>
235+
<div id="searchbox" style="display: none" role="search">
236+
<h3>Quick search</h3>
237+
<form class="search" action="../search.html" method="get">
238+
<div><input type="text" name="q" placeholder="Search docs" /></div>
239+
<div><input type="submit" value="Go" /></div>
240+
</form>
241+
</div>
242+
<script type="text/javascript">$('#searchbox').show(0);</script>
235243

236244
</div>
237245
</div>
@@ -252,7 +260,7 @@ <h3>Navigation</h3>
252260
<li><img src="../py.png"
253261
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
254262
<li class="nav-item nav-item-0">
255-
<a href="..">Python-Markdown 3.5.1 documentation</a> &#187;
263+
<a href="..">Python-Markdown 3.5.2 documentation</a> &#187;
256264
</li>
257265

258266

@@ -272,10 +280,11 @@ <h3>Navigation</h3>
272280
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
273281
</div>
274282
<script>var base_url = '..';</script>
283+
<script src="../search/main.js"></script>
275284

276285
<!--
277286
MkDocs version : 1.5.3
278-
Docs Build Date UTC : 2023-11-06 03:08:46.349797+00:00
287+
Docs Build Date UTC : 2024-01-10 15:19:15.720238+00:00
279288
-->
280289
</body>
281290
</html>

change_log/release-2.0/index.html

Lines changed: 13 additions & 4 deletions
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.5.1 documentation</title>
14+
<title>Release Notes for v2.0 &#8212; Python-Markdown 3.5.2 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.5.1 documentation</a> &#187;
39+
<a href="../..">Python-Markdown 3.5.2 documentation</a> &#187;
4040
</li>
4141

4242

@@ -140,6 +140,14 @@ <h3>This Page</h3>
140140
<li><a href="https://github.com/Python-Markdown/markdown/edit/master/docs/change_log/release-2.0.md">Edit on GitHub</a></li>
141141
</ul>
142142
</div>
143+
<div id="searchbox" style="display: none" role="search">
144+
<h3>Quick search</h3>
145+
<form class="search" action="../../search.html" method="get">
146+
<div><input type="text" name="q" placeholder="Search docs" /></div>
147+
<div><input type="submit" value="Go" /></div>
148+
</form>
149+
</div>
150+
<script type="text/javascript">$('#searchbox').show(0);</script>
143151

144152
</div>
145153
</div>
@@ -160,7 +168,7 @@ <h3>Navigation</h3>
160168
<li><img src="../../py.png"
161169
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
162170
<li class="nav-item nav-item-0">
163-
<a href="../..">Python-Markdown 3.5.1 documentation</a> &#187;
171+
<a href="../..">Python-Markdown 3.5.2 documentation</a> &#187;
164172
</li>
165173

166174

@@ -180,10 +188,11 @@ <h3>Navigation</h3>
180188
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
181189
</div>
182190
<script>var base_url = '../..';</script>
191+
<script src="../../search/main.js"></script>
183192

184193
<!--
185194
MkDocs version : 1.5.3
186-
Docs Build Date UTC : 2023-11-06 03:08:46.350383+00:00
195+
Docs Build Date UTC : 2024-01-10 15:19:15.722569+00:00
187196
-->
188197
</body>
189198
</html>

change_log/release-2.1/index.html

Lines changed: 13 additions & 4 deletions
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.5.1 documentation</title>
14+
<title>Release Notes for v2.1 &#8212; Python-Markdown 3.5.2 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.5.1 documentation</a> &#187;
39+
<a href="../..">Python-Markdown 3.5.2 documentation</a> &#187;
4040
</li>
4141

4242

@@ -195,6 +195,14 @@ <h3>This Page</h3>
195195
<li><a href="https://github.com/Python-Markdown/markdown/edit/master/docs/change_log/release-2.1.md">Edit on GitHub</a></li>
196196
</ul>
197197
</div>
198+
<div id="searchbox" style="display: none" role="search">
199+
<h3>Quick search</h3>
200+
<form class="search" action="../../search.html" method="get">
201+
<div><input type="text" name="q" placeholder="Search docs" /></div>
202+
<div><input type="submit" value="Go" /></div>
203+
</form>
204+
</div>
205+
<script type="text/javascript">$('#searchbox').show(0);</script>
198206

199207
</div>
200208
</div>
@@ -215,7 +223,7 @@ <h3>Navigation</h3>
215223
<li><img src="../../py.png"
216224
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
217225
<li class="nav-item nav-item-0">
218-
<a href="../..">Python-Markdown 3.5.1 documentation</a> &#187;
226+
<a href="../..">Python-Markdown 3.5.2 documentation</a> &#187;
219227
</li>
220228

221229

@@ -235,10 +243,11 @@ <h3>Navigation</h3>
235243
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
236244
</div>
237245
<script>var base_url = '../..';</script>
246+
<script src="../../search/main.js"></script>
238247

239248
<!--
240249
MkDocs version : 1.5.3
241-
Docs Build Date UTC : 2023-11-06 03:08:46.350985+00:00
250+
Docs Build Date UTC : 2024-01-10 15:19:15.723786+00:00
242251
-->
243252
</body>
244253
</html>

0 commit comments

Comments
 (0)