Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active July 19, 2023 05:41
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/25a9ab1cf8da8a1e4c1772a67b52b2ef to your computer and use it in GitHub Desktop.
Save aspose-com-gists/25a9ab1cf8da8a1e4c1772a67b52b2ef to your computer and use it in GitHub Desktop.
Convert Word Documents to Markdown in C#
// Load Word document
Document doc = new Document("document.docx");
// Set Markdown options
MarkdownSaveOptions so = new MarkdownSaveOptions();
so.ImagesFolder = "D:\\Images";
// Save the document in Markdown format
doc.Save("word-to-markdown.md", so);
// Load Word document
Document doc = new Document("document.docx");
// Save the document in Markdown format
doc.Save("word-to-markdown.md");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment