You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from markitdown import MarkItDown
md = MarkItDown()
result = md.convert("your-file-name.pptx")
text = result.text_content
# Save to a file
with open("your-file-name.md", "w", encoding="utf-8") as f:
f.write(text)
# Print to the console
# print(text)
UnicodeEncodeError: 'gbk' codec can't encode character '\u2009' in position 390: illegal multibyte sequence
The text was updated successfully, but these errors were encountered: