We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6351fd commit b4536abCopy full SHA for b4536ab
python-markitdown/batch_converter.py
@@ -22,7 +22,9 @@ def main(
22
print(f"✗ Error converting {file_path.name}: {e}")
23
continue
24
25
- output_file = output_path / f"{file_path.stem}{file_path.suffix}.md"
+ output_file = (
26
+ output_path / f"{file_path.stem}{file_path.suffix}.md"
27
+ )
28
output_file.write_text(result.markdown, encoding="utf-8")
29
print(f"✓ Converted {file_path.name} → {output_file.name}")
30
0 commit comments