markdown_convert 2.0.8__tar.gz → 2.0.9__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-2.0.8 → markdown_convert-2.0.9}/PKG-INFO +1 -1
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/extras.py +1 -1
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/pyproject.toml +1 -1
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/.gitignore +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/LICENSE +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/README.md +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/__init__.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/__main__.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/code.css +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/default.css +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/__init__.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/autoinstall.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/constants.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/convert.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/resources.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/transform.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/utils.py +0 -0
- {markdown_convert-2.0.8 → markdown_convert-2.0.9}/markdown_convert/modules/validate.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: markdown_convert
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.9
|
|
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>
|
|
@@ -237,7 +237,7 @@ class TocExtra(ExtraFeature):
|
|
|
237
237
|
|
|
238
238
|
list_item = soup.new_tag("li")
|
|
239
239
|
link = soup.new_tag("a", href=f"#{header['id']}")
|
|
240
|
-
link.string = header.get_text(strip=True)
|
|
240
|
+
link.string = header.get_text(strip=True, separator=" ")
|
|
241
241
|
list_item.append(link)
|
|
242
242
|
|
|
243
243
|
active_list[level].append(list_item)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "markdown_convert"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.9"
|
|
8
8
|
description = "Convert Markdown files to PDF from your command line."
|
|
9
9
|
authors = [{ name = "Julio Cabria", email = "juliocabria@tutanota.com" }]
|
|
10
10
|
license = { text = "GPL-2.0-only" }
|
|
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
|
|
File without changes
|
|
File without changes
|