fix(shell): Fixing a bug with content converting

This commit is contained in:
Karim shoair
2025-09-19 04:50:15 +03:00
parent a9d05cc0ef
commit 2d704b2a8b
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -545,7 +545,7 @@ class Convertor:
for page in pages:
match extraction_type:
case "markdown":
yield cls._convert_to_markdown(page.body)
yield cls._convert_to_markdown(page.html_content)
case "html":
yield page.body
case "text":