markdown_convert 1.2.32__tar.gz → 1.2.33__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.32 → markdown_convert-1.2.33}/PKG-INFO +1 -1
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/default.css +12 -3
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/pyproject.toml +1 -1
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/.gitignore +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/LICENSE +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/README.md +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/__init__.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/__main__.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/code.css +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/modules/__init__.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/modules/constants.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/modules/convert.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/modules/resources.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/modules/transform.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/markdown_convert/modules/utils.py +0 -0
- {markdown_convert-1.2.32 → markdown_convert-1.2.33}/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.33
|
|
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>
|
|
@@ -170,6 +170,7 @@ table {
|
|
|
170
170
|
border-collapse: collapse;
|
|
171
171
|
margin-top: var(--top-margin);
|
|
172
172
|
text-align: left;
|
|
173
|
+
width: 100%;
|
|
173
174
|
table-layout: auto;
|
|
174
175
|
}
|
|
175
176
|
|
|
@@ -185,11 +186,19 @@ th,
|
|
|
185
186
|
td {
|
|
186
187
|
padding: 0.5em 0.75em;
|
|
187
188
|
border: 1px solid #ccc;
|
|
188
|
-
|
|
189
|
+
overflow-wrap: break-word;
|
|
190
|
+
vertical-align: top;
|
|
189
191
|
}
|
|
190
192
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
+
th {
|
|
194
|
+
white-space: normal;
|
|
195
|
+
word-break: keep-all;
|
|
196
|
+
hyphens: auto;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
td {
|
|
200
|
+
white-space: normal;
|
|
201
|
+
word-break: break-word;
|
|
193
202
|
}
|
|
194
203
|
|
|
195
204
|
/* Page breaks */
|
|
@@ -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.33"
|
|
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
|