We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c5b204 commit 79dc4bdCopy full SHA for 79dc4bd
README.md
@@ -32,5 +32,14 @@ Convert files directly
32
from htmldocx import HtmlToDocx
33
34
new_parser = HtmlToDocx()
35
-new_parser.parse_html_file(input-html-file, output-docx-file)
+new_parser.parse_html_file(input_html_file_path, output_docx_file_path)
36
+```
37
+
38
+Convert files from a string
39
40
41
+from htmldocx import HtmlToDocx
42
43
+new_parser = HtmlToDocx()
44
+docx = new_parser.parse_html_string(input_html_file_string)
45
```
0 commit comments