-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/xls-support
- Loading branch information
Showing
7 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,7 +125,7 @@ contact [[email protected]](mailto:[email protected]) with any additio | |
|
||
### How to Contribute | ||
|
||
You can help by looking at issues or helping review PRs. Any issue or PR is welcome, but we have also marked some as 'open for contribution' and 'open for reviewing' to help faciliate community contributions. These are ofcourse just suggestions and you are welcome to contribute in any way you like. | ||
You can help by looking at issues or helping review PRs. Any issue or PR is welcome, but we have also marked some as 'open for contribution' and 'open for reviewing' to help facilitate community contributions. These are ofcourse just suggestions and you are welcome to contribute in any way you like. | ||
|
||
|
||
<div align="center"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,15 @@ | |
"AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation", | ||
] | ||
|
||
MSG_TEST_STRINGS = [ | ||
"# Email Message", | ||
"**From:** [email protected]", | ||
"**To:** [email protected]", | ||
"**Subject:** Test Email Message", | ||
"## Content", | ||
"This is the body of the test email message", | ||
] | ||
|
||
DOCX_COMMENT_TEST_STRINGS = [ | ||
"314b0a30-5b04-470b-b9f7-eed2c2bec74a", | ||
"49e168b7-d2ae-407f-a055-2167576f39a1", | ||
|
@@ -244,6 +253,10 @@ def test_markitdown_local() -> None: | |
result = markitdown.convert(os.path.join(TEST_FILES_DIR, "test_mskanji.csv")) | ||
validate_strings(result, CSV_CP932_TEST_STRINGS) | ||
|
||
# Test MSG (Outlook email) processing | ||
result = markitdown.convert(os.path.join(TEST_FILES_DIR, "test_outlook_msg.msg")) | ||
validate_strings(result, MSG_TEST_STRINGS) | ||
|
||
|
||
@pytest.mark.skipif( | ||
skip_exiftool, | ||
|