markdown_convert 1.2.6__tar.gz → 1.2.7__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.
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: markdown_convert
3
- Version: 1.2.6
3
+ Version: 1.2.7
4
4
  Summary: Convert Markdown files to PDF from your command line.
5
- Home-page: https://github.com/Julynx/markdown_convert
6
5
  License: GPL-2.0-only
7
6
  Author: Julio Cabria
8
7
  Author-email: juliocabria@tutanota.com
@@ -13,11 +12,13 @@ Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
16
  Requires-Dist: argsdict (==1.0.0)
17
17
  Requires-Dist: markdown2 (>=2.4.13,<3.0.0)
18
18
  Requires-Dist: pygments (>=2.17.2,<3.0.0)
19
19
  Requires-Dist: setuptools (>=46.0.0)
20
20
  Requires-Dist: weasyprint (>=62.3,<70.0)
21
+ Project-URL: Homepage, https://github.com/Julynx/markdown_convert
21
22
  Description-Content-Type: text/markdown
22
23
 
23
24
  # markdown-convert
@@ -20,4 +20,5 @@ OPTIONS_MODES = ('once', 'live')
20
20
 
21
21
  MD_EXTENSIONS = ["fenced-code-blocks",
22
22
  "header-ids",
23
+ "breaks",
23
24
  "tables"]
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "markdown_convert"
7
- version = "1.2.6"
7
+ version = "1.2.7"
8
8
  description = "Convert Markdown files to PDF from your command line."
9
9
  authors = ["Julio Cabria <juliocabria@tutanota.com>"]
10
10
  license = "GPL-2.0-only"