You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MarkItDown has optional dependencies for activating various file formats. Earlier in this document, we installed all optional dependencies with the `[all]` option. However, you can also install them individually for more control. For example:
93
100
@@ -258,6 +265,17 @@ result = md.convert("test.xlsx")
258
265
print(result.text_content)
259
266
```
260
267
268
+
To include reviewer comments when converting a DOCX file, pass
269
+
`include_comments=True`. The option can be supplied to an individual conversion
270
+
or to the `MarkItDown` constructor:
271
+
272
+
```python
273
+
result = md.convert("reviewed-document.docx", include_comments=True)
0 commit comments