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 54920dc commit 6c02f6bCopy full SHA for 6c02f6b
Word-to-Markdown-conversion/Export-images-to-folder/.NET/Export-images-to-folder/Program.cs
@@ -20,7 +20,7 @@ static void Main(string[] args)
20
using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"Output/Output.md"), FileMode.Create, FileAccess.ReadWrite))
21
{
22
//Set images folder to export images.
23
- document.SaveOptions.MarkdownExportImagesFolder = Path.GetFullPath(@"Output/Output");
+ document.SaveOptions.MarkdownExportImagesFolder = Path.GetFullPath(@"Output/");
24
//Save a Markdown file to the file stream.
25
document.Save(outputFileStream, FormatType.Markdown);
26
}
0 commit comments