markdown_convert 1.2.50__py3-none-any.whl → 1.2.51__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 +90 -0
- markdown_convert/modules/constants.py +1 -0
- {markdown_convert-1.2.50.dist-info → markdown_convert-1.2.51.dist-info}/METADATA +1 -1
- {markdown_convert-1.2.50.dist-info → markdown_convert-1.2.51.dist-info}/RECORD +7 -7
- {markdown_convert-1.2.50.dist-info → markdown_convert-1.2.51.dist-info}/WHEEL +0 -0
- {markdown_convert-1.2.50.dist-info → markdown_convert-1.2.51.dist-info}/entry_points.txt +0 -0
- {markdown_convert-1.2.50.dist-info → markdown_convert-1.2.51.dist-info}/licenses/LICENSE +0 -0
markdown_convert/default.css
CHANGED
|
@@ -24,6 +24,17 @@
|
|
|
24
24
|
--color-border-light: #ccc;
|
|
25
25
|
/* Hyperlinks */
|
|
26
26
|
--color-links: #09f;
|
|
27
|
+
|
|
28
|
+
/* Note */
|
|
29
|
+
--color-ad-note: oklch(70% 0.1 238.77);
|
|
30
|
+
/* Tip */
|
|
31
|
+
--color-ad-tip: oklch(70% 0.1 142.605);
|
|
32
|
+
/* Important */
|
|
33
|
+
--color-ad-important: oklch(70% 0.1 284.67);
|
|
34
|
+
/* Warning */
|
|
35
|
+
--color-ad-warning: oklch(70% 0.1 74.25);
|
|
36
|
+
/* Caution */
|
|
37
|
+
--color-ad-caution: oklch(70% 0.1 14.4);
|
|
27
38
|
}
|
|
28
39
|
|
|
29
40
|
/* Document */
|
|
@@ -432,4 +443,83 @@ math {
|
|
|
432
443
|
.justify {
|
|
433
444
|
display: block;
|
|
434
445
|
text-align: justify;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
/* Admonitions */
|
|
449
|
+
.admonition {
|
|
450
|
+
padding: 0.5rem 1rem;
|
|
451
|
+
margin-bottom: 1rem;
|
|
452
|
+
border-left: 0.25rem solid;
|
|
453
|
+
border-radius: 0.3rem;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.admonition header {
|
|
457
|
+
display: flex;
|
|
458
|
+
align-items: center;
|
|
459
|
+
gap: 0.25rem;
|
|
460
|
+
margin-bottom: 0.25rem;
|
|
461
|
+
font-weight: bold;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.admonition strong {
|
|
465
|
+
text-transform: capitalize;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.admonition em:not(:empty)::before {
|
|
469
|
+
content: ": ";
|
|
470
|
+
font-weight: bold;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.admonition em {
|
|
474
|
+
font-weight: 600;
|
|
475
|
+
font-style: normal;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.admonition p {
|
|
479
|
+
margin: 0;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.admonition.note {
|
|
483
|
+
border-left-color: var(--color-ad-note);
|
|
484
|
+
background-color: oklch(from var(--color-ad-note) 0.97 0.015 h);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.admonition.note strong {
|
|
488
|
+
color: var(--color-ad-note);
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.admonition.tip {
|
|
492
|
+
border-left-color: var(--color-ad-tip);
|
|
493
|
+
background-color: oklch(from var(--color-ad-tip) 0.97 0.015 h);
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.admonition.tip strong {
|
|
497
|
+
color: var(--color-ad-tip);
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.admonition.important {
|
|
501
|
+
border-left-color: var(--color-ad-important);
|
|
502
|
+
background-color: oklch(from var(--color-ad-important) 0.97 0.015 h);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.admonition.important strong {
|
|
506
|
+
color: var(--color-ad-important);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.admonition.warning {
|
|
510
|
+
border-left-color: var(--color-ad-warning);
|
|
511
|
+
background-color: oklch(from var(--color-ad-warning) 0.97 0.015 h);
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.admonition.warning strong {
|
|
515
|
+
color: var(--color-ad-warning);
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.admonition.caution {
|
|
519
|
+
border-left-color: var(--color-ad-caution);
|
|
520
|
+
background-color: oklch(from var(--color-ad-caution) 0.97 0.015 h);
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.admonition.caution strong {
|
|
524
|
+
color: var(--color-ad-caution);
|
|
435
525
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: markdown_convert
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.51
|
|
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,18 +1,18 @@
|
|
|
1
1
|
markdown_convert/__init__.py,sha256=0hLMtJnCIuApqopx5P4tiDSw850AmnuVcohmAbPVEZ4,303
|
|
2
2
|
markdown_convert/__main__.py,sha256=AocRo1iF1El_-Uo0owJ-QLbJUF0rum5R_AlNrTTTSOQ,2780
|
|
3
3
|
markdown_convert/code.css,sha256=Wt4FqFqJcpT-jwY3GN-o4ZRCCXU8DQj-9lqKdGiuoyw,4935
|
|
4
|
-
markdown_convert/default.css,sha256=
|
|
4
|
+
markdown_convert/default.css,sha256=XmIR6Kx4evwmLTZr9QZc3XhDj4jxjmGkwaeftfvHNmU,8149
|
|
5
5
|
markdown_convert/modules/__init__.py,sha256=PFPgiQhMXgyfjD8BkfLC_X8AR1jz-dCxfif2qmNofJs,65
|
|
6
6
|
markdown_convert/modules/autoinstall.py,sha256=Tnrde6MIcO11PWT7GZwhs_QTVRy6CSpUB_gIi9G5ve8,2063
|
|
7
|
-
markdown_convert/modules/constants.py,sha256=
|
|
7
|
+
markdown_convert/modules/constants.py,sha256=FA8DrQa9nzTUIJFXwXrK-AuOc5_ToGSFaD4sJqsnAjU,1305
|
|
8
8
|
markdown_convert/modules/convert.py,sha256=1AjQfnOXJoxKyfqr4misDuTvE4YXnwaoWw668FUHiEQ,8972
|
|
9
9
|
markdown_convert/modules/extras.py,sha256=GwNx6nseztHOWExcYmovxomdvOs078dMeknQTwzTCJo,2730
|
|
10
10
|
markdown_convert/modules/resources.py,sha256=eskLLbrkLJWs-vqtCLq4qV2Hjy6XeGFCUdT0VN2b_tA,2488
|
|
11
11
|
markdown_convert/modules/transform.py,sha256=e4QllWx5BYKEQqIzOkYigtxcSAWqSUHsoKkvqzYzEpY,4567
|
|
12
12
|
markdown_convert/modules/utils.py,sha256=NX0WegM8e8MPKNNmweTujAWO8ZghdB8LSGDx20K2E44,655
|
|
13
13
|
markdown_convert/modules/validate.py,sha256=XV_k7cHeifEKDaltF26tCmabs2-Me5msP3enI_eVwfA,1517
|
|
14
|
-
markdown_convert-1.2.
|
|
15
|
-
markdown_convert-1.2.
|
|
16
|
-
markdown_convert-1.2.
|
|
17
|
-
markdown_convert-1.2.
|
|
18
|
-
markdown_convert-1.2.
|
|
14
|
+
markdown_convert-1.2.51.dist-info/METADATA,sha256=sejp1Y3EzxGpfMqDxIJsieDaxkO9_o0gFffs7ULpwKw,4118
|
|
15
|
+
markdown_convert-1.2.51.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
16
|
+
markdown_convert-1.2.51.dist-info/entry_points.txt,sha256=RCmzC7C0sX-SpzIP2Cr34rhg3lMd7BRx-exaZPfK8bU,68
|
|
17
|
+
markdown_convert-1.2.51.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
|
18
|
+
markdown_convert-1.2.51.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|