()
| 253 | |
| 254 | |
| 255 | def test_docx_comments() -> None: |
| 256 | # Test DOCX processing, with comments and setting style_map on init |
| 257 | markitdown_with_style_map = MarkItDown(style_map="comment-reference => ") |
| 258 | result = markitdown_with_style_map.convert( |
| 259 | os.path.join(TEST_FILES_DIR, "test_with_comment.docx") |
| 260 | ) |
| 261 | validate_strings(result, DOCX_COMMENT_TEST_STRINGS) |
| 262 | |
| 263 | |
| 264 | def test_docx_equations() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…