Corrected variable name from output_filoutput_path_htmle_path to output_path_html (#26)
Browse files- Corrected variable name from output_filoutput_path_htmle_path to output_path_html (0b21b419d8e9315be55a21600cd2135253dbd6a4)
Co-authored-by: Narendra Kalekar <[email protected]>
README.md
CHANGED
@@ -108,8 +108,9 @@ doc.load_from_doctags(doctags_doc)
|
|
108 |
|
109 |
# export as any format
|
110 |
# HTML
|
|
|
111 |
# output_path_html = Path("Out/") / "example.html"
|
112 |
-
# doc.save_as_html(
|
113 |
# MD
|
114 |
print(doc.export_to_markdown())
|
115 |
```
|
|
|
108 |
|
109 |
# export as any format
|
110 |
# HTML
|
111 |
+
# Path("Out/").mkdir(parents=True, exist_ok=True)
|
112 |
# output_path_html = Path("Out/") / "example.html"
|
113 |
+
# doc.save_as_html(output_path_html)
|
114 |
# MD
|
115 |
print(doc.export_to_markdown())
|
116 |
```
|