Skip to content

Commit 16fc264

Browse files
committed
feat(html2pdf): update the Python library to 0.0.23
This is an intermediate release while we are waiting for the major layout fixes to be released in the upstream JS repository. Even without the complete release, this intermediate release should address several layout bugs that were reported by StrictDoc users in: #2170 #2530 #2531 https://github.com/strictdoc-project/html2pdf4doc_python/releases/tag/0.0.23
1 parent db95979 commit 16fc264

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ dependencies = [
9595
"WebSockets",
9696

9797
# HTML2PDF dependencies
98-
"html2pdf4doc >= 0.0.22",
98+
"html2pdf4doc >= 0.0.23",
9999

100100
# Robot Framework dependencies
101101
"robotframework >= 4.0.0",

strictdoc/export/html/html_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import Any, Dict, List, Optional, Set, Tuple
88

99
import orjson
10-
from html2pdf4doc.html2pdf4doc import PATH_TO_HTML2PDF4DOC_JS
10+
from html2pdf4doc import PATH_TO_HTML2PDF4DOC_JS
1111

1212
from strictdoc.backend.sdoc.models.document import SDocDocument
1313
from strictdoc.core.asset_manager import AssetDir

0 commit comments

Comments
 (0)