markdown_convert 1.2.47__py3-none-any.whl → 1.2.48__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- markdown_convert/default.css +20 -22
- {markdown_convert-1.2.47.dist-info → markdown_convert-1.2.48.dist-info}/METADATA +1 -1
- {markdown_convert-1.2.47.dist-info → markdown_convert-1.2.48.dist-info}/RECORD +6 -6
- {markdown_convert-1.2.47.dist-info → markdown_convert-1.2.48.dist-info}/WHEEL +0 -0
- {markdown_convert-1.2.47.dist-info → markdown_convert-1.2.48.dist-info}/entry_points.txt +0 -0
- {markdown_convert-1.2.47.dist-info → markdown_convert-1.2.48.dist-info}/licenses/LICENSE +0 -0
markdown_convert/default.css
CHANGED
|
@@ -12,12 +12,18 @@
|
|
|
12
12
|
--left-margin-big: 2em;
|
|
13
13
|
|
|
14
14
|
/* -- Colors -- */
|
|
15
|
-
|
|
16
|
-
--color-text
|
|
17
|
-
|
|
18
|
-
--color-
|
|
19
|
-
|
|
20
|
-
--color-
|
|
15
|
+
/* Main text color */
|
|
16
|
+
--color-text: #333;
|
|
17
|
+
/* Tables, blockquotes, footers */
|
|
18
|
+
--color-text-light: #666;
|
|
19
|
+
/* Code blocks, table headers */
|
|
20
|
+
--color-text-background: #eee;
|
|
21
|
+
/* Image borders, rules */
|
|
22
|
+
--color-border: #999;
|
|
23
|
+
/* Table borders, blockquotes */
|
|
24
|
+
--color-border-light: #ccc;
|
|
25
|
+
/* Hyperlinks */
|
|
26
|
+
--color-links: #09f;
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
/* Document */
|
|
@@ -59,6 +65,7 @@ h2,
|
|
|
59
65
|
h3,
|
|
60
66
|
h4,
|
|
61
67
|
h5 {
|
|
68
|
+
line-height: 1;
|
|
62
69
|
color: var(--color-text);
|
|
63
70
|
font-weight: 600;
|
|
64
71
|
}
|
|
@@ -122,7 +129,7 @@ pre {
|
|
|
122
129
|
white-space: pre-wrap;
|
|
123
130
|
}
|
|
124
131
|
|
|
125
|
-
pre
|
|
132
|
+
pre>code {
|
|
126
133
|
display: block;
|
|
127
134
|
padding: 1em;
|
|
128
135
|
margin-top: 0;
|
|
@@ -160,7 +167,7 @@ blockquote {
|
|
|
160
167
|
color: var(--color-text-light);
|
|
161
168
|
}
|
|
162
169
|
|
|
163
|
-
blockquote
|
|
170
|
+
blockquote>blockquote {
|
|
164
171
|
padding-left: var(--left-margin-small);
|
|
165
172
|
}
|
|
166
173
|
|
|
@@ -175,7 +182,7 @@ img {
|
|
|
175
182
|
}
|
|
176
183
|
|
|
177
184
|
/* Image footers */
|
|
178
|
-
p
|
|
185
|
+
p>img+em {
|
|
179
186
|
text-align: center;
|
|
180
187
|
font-size: 1rem;
|
|
181
188
|
font-style: italic;
|
|
@@ -284,19 +291,10 @@ th,
|
|
|
284
291
|
td {
|
|
285
292
|
padding: 0.5em 0.75em;
|
|
286
293
|
border: 1px solid var(--color-border-light);
|
|
287
|
-
overflow-wrap: break-word;
|
|
288
294
|
vertical-align: top;
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
th {
|
|
292
|
-
white-space: normal;
|
|
293
|
-
word-break: keep-all;
|
|
294
|
-
hyphens: auto;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
td {
|
|
295
|
+
overflow-wrap: break-word;
|
|
296
|
+
word-break: normal;
|
|
298
297
|
white-space: normal;
|
|
299
|
-
word-break: break-word;
|
|
300
298
|
}
|
|
301
299
|
|
|
302
300
|
/* Horizontal rulers */
|
|
@@ -311,7 +309,7 @@ hr:has(+ hr) {
|
|
|
311
309
|
visibility: hidden;
|
|
312
310
|
}
|
|
313
311
|
|
|
314
|
-
hr
|
|
312
|
+
hr+hr {
|
|
315
313
|
clear: both;
|
|
316
314
|
break-after: always;
|
|
317
315
|
page-break-after: always;
|
|
@@ -419,4 +417,4 @@ math {
|
|
|
419
417
|
.center {
|
|
420
418
|
display: block;
|
|
421
419
|
text-align: center;
|
|
422
|
-
}
|
|
420
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: markdown_convert
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.48
|
|
4
4
|
Summary: Convert Markdown files to PDF from your command line.
|
|
5
5
|
Project-URL: homepage, https://github.com/Julynx/markdown_convert
|
|
6
6
|
Author-email: Julio Cabria <juliocabria@tutanota.com>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
markdown_convert/__init__.py,sha256=ysW3pXsDGGK4PzZHcIBTpfVW58IkDUwHffDkf_GM6UU,303
|
|
2
2
|
markdown_convert/__main__.py,sha256=w6sHfJcJQpMOERPqiNoKgoRM38YUwK22eGBmVkpZj1g,2807
|
|
3
3
|
markdown_convert/code.css,sha256=Wt4FqFqJcpT-jwY3GN-o4ZRCCXU8DQj-9lqKdGiuoyw,4935
|
|
4
|
-
markdown_convert/default.css,sha256=
|
|
4
|
+
markdown_convert/default.css,sha256=JSXCDhE634iXFMIuJkMgzvDVbw1nXJi-GLDmcpo0fo0,6200
|
|
5
5
|
markdown_convert/modules/__init__.py,sha256=PFPgiQhMXgyfjD8BkfLC_X8AR1jz-dCxfif2qmNofJs,65
|
|
6
6
|
markdown_convert/modules/constants.py,sha256=eUeIFRxZerP3E0Rgp_Nsl0Q38IBELwca5UO3fbUcxRA,1280
|
|
7
7
|
markdown_convert/modules/convert.py,sha256=4UEZhx_v4lqcgTYeCiQ3V4Bkxz4siHCKQIHGvHICHuI,8888
|
|
@@ -9,8 +9,8 @@ markdown_convert/modules/resources.py,sha256=tnW8JmCrJNBRbzOcaOVG6GX5jPC8Kzj3dA7
|
|
|
9
9
|
markdown_convert/modules/transform.py,sha256=_Pz-t_7g_n_IwtHtc386WDugkw6CfDpdgw_aFgiSM4Q,4796
|
|
10
10
|
markdown_convert/modules/utils.py,sha256=NX0WegM8e8MPKNNmweTujAWO8ZghdB8LSGDx20K2E44,655
|
|
11
11
|
markdown_convert/modules/validate.py,sha256=XV_k7cHeifEKDaltF26tCmabs2-Me5msP3enI_eVwfA,1517
|
|
12
|
-
markdown_convert-1.2.
|
|
13
|
-
markdown_convert-1.2.
|
|
14
|
-
markdown_convert-1.2.
|
|
15
|
-
markdown_convert-1.2.
|
|
16
|
-
markdown_convert-1.2.
|
|
12
|
+
markdown_convert-1.2.48.dist-info/METADATA,sha256=iDb4MKGuRwkFbLNMUJgRZ3sQZ0Mkj-Jvk1FOw-BFLXE,4077
|
|
13
|
+
markdown_convert-1.2.48.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
14
|
+
markdown_convert-1.2.48.dist-info/entry_points.txt,sha256=RCmzC7C0sX-SpzIP2Cr34rhg3lMd7BRx-exaZPfK8bU,68
|
|
15
|
+
markdown_convert-1.2.48.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
|
16
|
+
markdown_convert-1.2.48.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|