markdown_convert 1.2.42__py3-none-any.whl → 1.2.43__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 +53 -20
- {markdown_convert-1.2.42.dist-info → markdown_convert-1.2.43.dist-info}/METADATA +1 -1
- {markdown_convert-1.2.42.dist-info → markdown_convert-1.2.43.dist-info}/RECORD +6 -6
- {markdown_convert-1.2.42.dist-info → markdown_convert-1.2.43.dist-info}/WHEEL +0 -0
- {markdown_convert-1.2.42.dist-info → markdown_convert-1.2.43.dist-info}/entry_points.txt +0 -0
- {markdown_convert-1.2.42.dist-info → markdown_convert-1.2.43.dist-info}/licenses/LICENSE +0 -0
markdown_convert/default.css
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
--left-margin: 1.5em;
|
|
11
11
|
--left-margin-small: 1em;
|
|
12
12
|
--left-margin-big: 2em;
|
|
13
|
+
|
|
14
|
+
/* -- Colors -- */
|
|
15
|
+
--color-text: #333; /* Main text color */
|
|
16
|
+
--color-text-light: #666; /* Tables, blockquotes, footers */
|
|
17
|
+
--color-text-background: #eee; /* Code blocks, table headers */
|
|
18
|
+
--color-border: #999; /* Image borders, rules */
|
|
19
|
+
--color-border-light: #ccc; /* Table borders, blockquotes */
|
|
20
|
+
--color-links: #09f; /* Hyperlinks */
|
|
13
21
|
}
|
|
14
22
|
|
|
15
23
|
/* Document */
|
|
@@ -24,7 +32,7 @@ body {
|
|
|
24
32
|
font-family:
|
|
25
33
|
"Segoe UI", "Ubuntu", "DejaVu Sans", "Liberation Sans", "Arial",
|
|
26
34
|
"sans-serif";
|
|
27
|
-
color:
|
|
35
|
+
color: var(--color-text);
|
|
28
36
|
}
|
|
29
37
|
|
|
30
38
|
/* Headers and paragraphs */
|
|
@@ -51,18 +59,18 @@ h2,
|
|
|
51
59
|
h3,
|
|
52
60
|
h4,
|
|
53
61
|
h5 {
|
|
54
|
-
color:
|
|
62
|
+
color: var(--color-text);
|
|
55
63
|
font-weight: 600;
|
|
56
64
|
}
|
|
57
65
|
|
|
58
66
|
h1 {
|
|
59
67
|
font-size: 2.2rem;
|
|
60
|
-
border-bottom: 0.5px solid
|
|
68
|
+
border-bottom: 0.5px solid var(--color-border);
|
|
61
69
|
}
|
|
62
70
|
|
|
63
71
|
h2 {
|
|
64
72
|
font-size: 1.8rem;
|
|
65
|
-
border-bottom: 0.5px solid
|
|
73
|
+
border-bottom: 0.5px solid var(--color-border);
|
|
66
74
|
}
|
|
67
75
|
|
|
68
76
|
h3 {
|
|
@@ -83,7 +91,7 @@ p {
|
|
|
83
91
|
|
|
84
92
|
/* Links */
|
|
85
93
|
a {
|
|
86
|
-
color:
|
|
94
|
+
color: var(--color-links);
|
|
87
95
|
margin: 0;
|
|
88
96
|
vertical-align: baseline;
|
|
89
97
|
}
|
|
@@ -126,7 +134,7 @@ code {
|
|
|
126
134
|
"JetBrains Mono", "Consolas", "Ubuntu Mono", "DejaVu Sans Mono",
|
|
127
135
|
"Liberation Mono", "Courier New", monospace;
|
|
128
136
|
font-size: 1rem;
|
|
129
|
-
background-color:
|
|
137
|
+
background-color: var(--color-text-background);
|
|
130
138
|
padding-left: 0.4em;
|
|
131
139
|
padding-right: 0.4em;
|
|
132
140
|
display: inline-block;
|
|
@@ -147,9 +155,9 @@ blockquote {
|
|
|
147
155
|
margin-top: 0;
|
|
148
156
|
margin-bottom: var(--bottom-margin);
|
|
149
157
|
margin-left: var(--left-margin);
|
|
150
|
-
border-left: 4px solid
|
|
158
|
+
border-left: 4px solid var(--color-border-light);
|
|
151
159
|
padding-left: 0.5em;
|
|
152
|
-
color:
|
|
160
|
+
color: var(--color-text-light);
|
|
153
161
|
}
|
|
154
162
|
|
|
155
163
|
blockquote > blockquote {
|
|
@@ -166,6 +174,16 @@ img {
|
|
|
166
174
|
margin: 1em auto;
|
|
167
175
|
}
|
|
168
176
|
|
|
177
|
+
/* Image footers */
|
|
178
|
+
p > img + em {
|
|
179
|
+
text-align: center;
|
|
180
|
+
font-size: 1rem;
|
|
181
|
+
font-style: italic;
|
|
182
|
+
color: var(--color-text-light);
|
|
183
|
+
display: block;
|
|
184
|
+
margin: 1em auto;
|
|
185
|
+
}
|
|
186
|
+
|
|
169
187
|
/* Image alt text attributes */
|
|
170
188
|
img[alt*="::tiny::"],
|
|
171
189
|
img[alt*="::smallest::"] {
|
|
@@ -201,14 +219,29 @@ p:has(> img[alt*="::inline::"]) {
|
|
|
201
219
|
margin-right: 1em;
|
|
202
220
|
}
|
|
203
221
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
222
|
+
img[alt*="::shadow::"] {
|
|
223
|
+
box-shadow: rgba(100, 100, 100, 0.4) 0px 2px 8px 0px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
img[alt*="::border::"] {
|
|
227
|
+
border: 2px solid var(--color-border);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
img[alt*="::invert::"] {
|
|
231
|
+
filter: invert(100%);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
img[alt*="::grayscale::"],
|
|
235
|
+
img[alt*="::greyscale::"] {
|
|
236
|
+
filter: grayscale(100%);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
img[alt*="::circle::"] {
|
|
240
|
+
border-radius: 50%;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
img[alt*="::rounded::"] {
|
|
244
|
+
border-radius: 1em;
|
|
212
245
|
}
|
|
213
246
|
|
|
214
247
|
/* Tables */
|
|
@@ -224,17 +257,17 @@ table {
|
|
|
224
257
|
}
|
|
225
258
|
|
|
226
259
|
thead {
|
|
227
|
-
background-color:
|
|
260
|
+
background-color: var(--color-text-background);
|
|
228
261
|
}
|
|
229
262
|
|
|
230
263
|
tbody {
|
|
231
|
-
color:
|
|
264
|
+
color: var(--color-text-light);
|
|
232
265
|
}
|
|
233
266
|
|
|
234
267
|
th,
|
|
235
268
|
td {
|
|
236
269
|
padding: 0.5em 0.75em;
|
|
237
|
-
border: 1px solid
|
|
270
|
+
border: 1px solid var(--color-border-light);
|
|
238
271
|
overflow-wrap: break-word;
|
|
239
272
|
vertical-align: top;
|
|
240
273
|
}
|
|
@@ -253,7 +286,7 @@ td {
|
|
|
253
286
|
/* Horizontal rulers */
|
|
254
287
|
hr {
|
|
255
288
|
height: 1px;
|
|
256
|
-
background-color:
|
|
289
|
+
background-color: var(--color-border);
|
|
257
290
|
border: none;
|
|
258
291
|
}
|
|
259
292
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: markdown_convert
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.43
|
|
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=LQ-ydMbBO61toJMhjs7dJlh9R4UTL1JnSVb9eEb_pc0,5138
|
|
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=02N_Iz4TLKWR1xseNv8hyCTujCJdYepWZlxjXw9tsj0,8876
|
|
@@ -9,8 +9,8 @@ markdown_convert/modules/resources.py,sha256=tnW8JmCrJNBRbzOcaOVG6GX5jPC8Kzj3dA7
|
|
|
9
9
|
markdown_convert/modules/transform.py,sha256=p7J8LJKBjMA_EtUYIfXqw_Tc1eean7EbM6KW5Tv4AOs,3138
|
|
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.43.dist-info/METADATA,sha256=Dwy6DB283L8VR38CX9HIGcXb1eqNftKxpMx_cyYLWM8,3928
|
|
13
|
+
markdown_convert-1.2.43.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
14
|
+
markdown_convert-1.2.43.dist-info/entry_points.txt,sha256=RCmzC7C0sX-SpzIP2Cr34rhg3lMd7BRx-exaZPfK8bU,68
|
|
15
|
+
markdown_convert-1.2.43.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
|
16
|
+
markdown_convert-1.2.43.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|