Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active November 5, 2021 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/d2224c7d9075ba15222080d608837b2f to your computer and use it in GitHub Desktop.
Save aspose-com-gists/d2224c7d9075ba15222080d608837b2f to your computer and use it in GitHub Desktop.
Convert Word Document to Markdown in Python
import aspose.words as aw
# load document
doc = aw.Document("document.docx")
# set options
saveOptions = aw.saving.MarkdownSaveOptions()
saveOptions.images_folder = "Images"
# save as markdown file
doc.save("document.md", saveOptions)
import aspose.words as aw
# load document
doc = aw.Document("document.docx")
# save as markdown file
doc.save("document.md")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment