EPub Support. Adapted #123 to not use epublib. (#1131)

* Adapted #123 to not use epublib.
* Updated README.md
This commit is contained in:
afourney
2025-03-17 07:48:15 -07:00
committed by GitHub
parent c5f70b904f
commit a93e0567e6
5 changed files with 171 additions and 1 deletions

View File

@@ -211,4 +211,22 @@ GENERAL_TEST_VECTORS = [
],
must_not_include=[],
),
FileTestVector(
filename="test.epub",
mimetype="application/epub+zip",
charset=None,
url=None,
must_include=[
"**Authors:** Test Author",
"A test EPUB document for MarkItDown testing",
"# Chapter 1: Test Content",
"This is a **test** paragraph with some formatting",
"* A bullet point",
"* Another point",
"# Chapter 2: More Content",
"*different* style",
"> This is a blockquote for testing",
],
must_not_include=[],
),
]