Skip to content

Commit d9ef923

Browse files
committed
Deployed 4f0b91a with MkDocs version: 1.5.3
1 parent 2a0ce7c commit d9ef923

File tree

76 files changed

+18999
-8358
lines changed

Some content is hidden

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

76 files changed

+18999
-8358
lines changed

404.html

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

1313

14-
<title>Python-Markdown 3.4.4 documentation</title>
14+
<title>Python-Markdown 3.5 documentation</title>
1515
<link rel="stylesheet" href="/static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="/static/pygments.css" type="text/css" />
17+
<link rel="stylesheet" href="/assets/_mkdocstrings.css" type="text/css" />
18+
<link rel="stylesheet" href="/custom.css" type="text/css" />
19+
<link rel="stylesheet" href="/mkdocstrings.css" type="text/css" />
1720
<script type="text/javascript" src="/static/jquery.js"></script>
1821
<script type="text/javascript" src="/static/underscore.js"></script>
1922
</head>
@@ -23,7 +26,7 @@
2326
<h3>Navigation</h3>
2427
<ul>
2528
<li class="right" style="margin-right: 10px">
26-
<a href="https://github.com/Python-Markdown/markdown/" title="View this project on GitHub"><img src="/static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
29+
<a href="https://github.com/Python-Markdown/markdown" title="View this project on GitHub"><img src="/static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
2730
</li>
2831
<li class="right" style="margin-right: 10px">
2932
<a href="/sitemap.html" title="Sitemap" accesskey="I">index</a>
@@ -33,7 +36,7 @@ <h3>Navigation</h3>
3336
<li><img src="/py.png"
3437
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
3538
<li class="nav-item nav-item-0">
36-
<a href="/.">Python-Markdown 3.4.4 documentation</a> &#187;
39+
<a href="/.">Python-Markdown 3.5 documentation</a> &#187;
3740
</li>
3841
</ul>
3942
</div>
@@ -64,14 +67,6 @@ <h3>This Page</h3>
6467
<li><a href="https://github.com/Python-Markdown/markdown/issues">Report a Bug</a></li>
6568
</ul>
6669
</div>
67-
<div id="searchbox" style="display: none" role="search">
68-
<h3>Quick search</h3>
69-
<form class="search" action="/search.html" method="get">
70-
<div><input type="text" name="q" placeholder="Search docs" /></div>
71-
<div><input type="submit" value="Go" /></div>
72-
</form>
73-
</div>
74-
<script type="text/javascript">$('#searchbox').show(0);</script>
7570

7671
</div>
7772
</div>
@@ -82,7 +77,7 @@ <h3>Quick search</h3>
8277
<h3>Navigation</h3>
8378
<ul>
8479
<li class="right" style="margin-right: 10px">
85-
<a href="https://github.com/Python-Markdown/markdown/" title="View this project on GitHub"><img src="/static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
80+
<a href="https://github.com/Python-Markdown/markdown" title="View this project on GitHub"><img src="/static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
8681
</li>
8782
<li class="right" style="margin-right: 10px">
8883
<a href="/sitemap.html" title="Sitemap" accesskey="I">index</a>
@@ -92,19 +87,18 @@ <h3>Navigation</h3>
9287
<li><img src="/py.png"
9388
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
9489
<li class="nav-item nav-item-0">
95-
<a href="/.">Python-Markdown 3.4.4 documentation</a> &#187;
90+
<a href="/.">Python-Markdown 3.5 documentation</a> &#187;
9691
</li>
9792
</ul>
9893
</div>
9994
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
100-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.1.2.
95+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
10196
</div>
10297
<script>var base_url = '/';</script>
103-
<script src="/search/main.js"></script>
10498

10599
<!--
106-
MkDocs version : 1.1.2
107-
Docs Build Date UTC : 2023-07-25 15:15:31.559344+00:00
100+
MkDocs version : 1.5.3
101+
Docs Build Date UTC : 2023-10-09 18:02:55.500947+00:00
108102
-->
109103
</body>
110104
</html>

assets/_mkdocstrings.css

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
2+
/* Avoid breaking parameter names, etc. in table cells. */
3+
.doc-contents td code {
4+
word-break: normal !important;
5+
}
6+
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
11+
}
12+
13+
/* Max width for docstring sections tables. */
14+
.doc .md-typeset__table,
15+
.doc .md-typeset__table table {
16+
display: table !important;
17+
width: 100%;
18+
}
19+
20+
.doc .md-typeset__table tr {
21+
display: table-row;
22+
}
23+
24+
/* Defaults in Spacy table style. */
25+
.doc-param-default {
26+
float: right;
27+
}
28+
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;
40+
}
41+
42+
h1.doc-heading {
43+
font-size: 1.6rem;
44+
}
45+
46+
h2.doc-heading {
47+
font-size: 1.2rem;
48+
}
49+
50+
h3.doc-heading {
51+
font-size: 1.15rem;
52+
}
53+
54+
h4.doc-heading {
55+
font-size: 1.10rem;
56+
}
57+
58+
h5.doc-heading {
59+
font-size: 1.05rem;
60+
}
61+
62+
h6.doc-heading {
63+
font-size: 1rem;
64+
}

authors/index.html

100755100644
+15-43
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@
1010
<link rel="shortcut icon" href="../favicon.ico">
1111
<link rel="search" title="Search" href="../search.html" />
1212

13-
<link rel="prev" title="Release Notes for v.2.0" href="../change_log/release-2.0/" />
14-
<title>Authors &#8212; Python-Markdown 3.4.4 documentation</title>
13+
<link rel="prev" title="Changelog" href="../changelog/" />
14+
<title>Authors &#8212; Python-Markdown 3.5 documentation</title>
1515
<link rel="stylesheet" href="../static/nature.css" type="text/css" />
1616
<link rel="stylesheet" href="../static/pygments.css" type="text/css" />
17+
<link rel="stylesheet" href="../assets/_mkdocstrings.css" type="text/css" />
18+
<link rel="stylesheet" href="../custom.css" type="text/css" />
19+
<link rel="stylesheet" href="../mkdocstrings.css" type="text/css" />
1720
<script type="text/javascript" src="../static/jquery.js"></script>
1821
<script type="text/javascript" src="../static/underscore.js"></script>
1922
</head>
@@ -23,19 +26,19 @@
2326
<h3>Navigation</h3>
2427
<ul>
2528
<li class="right" style="margin-right: 10px">
26-
<a href="https://github.com/Python-Markdown/markdown/" title="View this project on GitHub"><img src="../static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
29+
<a href="https://github.com/Python-Markdown/markdown" title="View this project on GitHub"><img src="../static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
2730
</li>
2831
<li class="right" style="margin-right: 10px">
2932
<a href="../sitemap.html" title="Sitemap" accesskey="I">index</a>
3033
</li>
3134

3235
<li class="right">
33-
<a href="../change_log/release-2.0/" title="Release Notes for v.2.0" accesskey="P">previous</a> |
36+
<a href="../changelog/" title="Changelog" accesskey="P">previous</a> |
3437
</li>
3538
<li><img src="../py.png"
3639
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
3740
<li class="nav-item nav-item-0">
38-
<a href="..">Python-Markdown 3.4.4 documentation</a> &#187;
41+
<a href="..">Python-Markdown 3.5 documentation</a> &#187;
3942
</li>
4043

4144

@@ -46,17 +49,6 @@ <h3>Navigation</h3>
4649

4750

4851

49-
50-
51-
52-
53-
54-
55-
56-
57-
58-
59-
6052

6153

6254

@@ -156,7 +148,7 @@ <h3><a href="index.html">Table Of Contents</a></h3>
156148

157149
<h4>Previous topic</h4>
158150
<p class="topless">
159-
<a href="../change_log/release-2.0/" title="previous page">Release Notes for v.2.0</a>
151+
<a href="../changelog/" title="previous page">Changelog</a>
160152
</p>
161153

162154

@@ -168,14 +160,6 @@ <h3>This Page</h3>
168160
<li><a href="https://github.com/Python-Markdown/markdown/edit/master/docs/authors.md">Edit on GitHub</a></li>
169161
</ul>
170162
</div>
171-
<div id="searchbox" style="display: none" role="search">
172-
<h3>Quick search</h3>
173-
<form class="search" action="../search.html" method="get">
174-
<div><input type="text" name="q" placeholder="Search docs" /></div>
175-
<div><input type="submit" value="Go" /></div>
176-
</form>
177-
</div>
178-
<script type="text/javascript">$('#searchbox').show(0);</script>
179163

180164
</div>
181165
</div>
@@ -186,19 +170,19 @@ <h3>Quick search</h3>
186170
<h3>Navigation</h3>
187171
<ul>
188172
<li class="right" style="margin-right: 10px">
189-
<a href="https://github.com/Python-Markdown/markdown/" title="View this project on GitHub"><img src="../static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
173+
<a href="https://github.com/Python-Markdown/markdown" title="View this project on GitHub"><img src="../static/github.png" width=16px style="vertical-align: middle; margin-top: -1px" /></a>
190174
</li>
191175
<li class="right" style="margin-right: 10px">
192176
<a href="../sitemap.html" title="Sitemap" accesskey="I">index</a>
193177
</li>
194178

195179
<li class="right">
196-
<a href="../change_log/release-2.0/" title="Release Notes for v.2.0" accesskey="P">previous</a> |
180+
<a href="../changelog/" title="Changelog" accesskey="P">previous</a> |
197181
</li>
198182
<li><img src="../py.png"
199183
alt="icon" style="vertical-align: middle; margin-top: -1px"/></li>
200184
<li class="nav-item nav-item-0">
201-
<a href="..">Python-Markdown 3.4.4 documentation</a> &#187;
185+
<a href="..">Python-Markdown 3.5 documentation</a> &#187;
202186
</li>
203187

204188

@@ -209,17 +193,6 @@ <h3>Navigation</h3>
209193

210194

211195

212-
213-
214-
215-
216-
217-
218-
219-
220-
221-
222-
223196

224197

225198

@@ -229,14 +202,13 @@ <h3>Navigation</h3>
229202
</ul>
230203
</div>
231204
<div class="footer" role="contentinfo">Copyright &copy; 2010-2023, The Python-Markdown Project.
232-
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.1.2.
205+
Created using <a href="https://www.mkdocs.org/">MkDocs</a> 1.5.3.
233206
</div>
234207
<script>var base_url = '..';</script>
235-
<script src="../search/main.js"></script>
236208

237209
<!--
238-
MkDocs version : 1.1.2
239-
Docs Build Date UTC : 2023-07-25 15:15:31.574966+00:00
210+
MkDocs version : 1.5.3
211+
Docs Build Date UTC : 2023-10-09 18:02:55.521503+00:00
240212
-->
241213
</body>
242214
</html>

0 commit comments

Comments
 (0)