markdown_convert 1.2.44__tar.gz → 1.2.45__tar.gz
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-1.2.44 → markdown_convert-1.2.45}/PKG-INFO +3 -1
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/README.md +2 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/pyproject.toml +1 -1
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/.gitignore +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/LICENSE +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/__init__.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/__main__.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/code.css +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/default.css +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/__init__.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/constants.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/convert.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/resources.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/transform.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/utils.py +0 -0
- {markdown_convert-1.2.44 → markdown_convert-1.2.45}/markdown_convert/modules/validate.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: markdown_convert
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.45
|
|
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>
|
|
@@ -59,6 +59,8 @@ Unlike other similar tools, `markdown-convert`:
|
|
|
59
59
|
- **Custom CSS** `markdown-convert file.md --css=style.css` extends the default CSS with your own stylesheet.
|
|
60
60
|
- **Pipe tables, checkboxes, header links, CSS paged media features and more!**
|
|
61
61
|
|
|
62
|
+
Check out [CUSTOM_SYNTAX.md](https://github.com/Julynx/markdown_convert/blob/main/CUSTOM_SYNTAX.md) for all the extra features and how to use them.
|
|
63
|
+
|
|
62
64
|
## Installation
|
|
63
65
|
|
|
64
66
|
`markdown-convert` is available on PyPI and can be installed via pip:
|
|
@@ -39,6 +39,8 @@ Unlike other similar tools, `markdown-convert`:
|
|
|
39
39
|
- **Custom CSS** `markdown-convert file.md --css=style.css` extends the default CSS with your own stylesheet.
|
|
40
40
|
- **Pipe tables, checkboxes, header links, CSS paged media features and more!**
|
|
41
41
|
|
|
42
|
+
Check out [CUSTOM_SYNTAX.md](https://github.com/Julynx/markdown_convert/blob/main/CUSTOM_SYNTAX.md) for all the extra features and how to use them.
|
|
43
|
+
|
|
42
44
|
## Installation
|
|
43
45
|
|
|
44
46
|
`markdown-convert` is available on PyPI and can be installed via pip:
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "markdown_convert"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.45"
|
|
8
8
|
description = "Convert Markdown files to PDF from your command line."
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Julio Cabria", email = "juliocabria@tutanota.com" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|