Skip to content

Commit 6c02f6b

Browse files
resolved issues faced with playground button
1 parent 54920dc commit 6c02f6b

File tree

1 file changed

+1
-1
lines changed
  • Word-to-Markdown-conversion/Export-images-to-folder/.NET/Export-images-to-folder

1 file changed

+1
-1
lines changed

Word-to-Markdown-conversion/Export-images-to-folder/.NET/Export-images-to-folder/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static void Main(string[] args)
2020
using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"Output/Output.md"), FileMode.Create, FileAccess.ReadWrite))
2121
{
2222
//Set images folder to export images.
23-
document.SaveOptions.MarkdownExportImagesFolder = Path.GetFullPath(@"Output/Output");
23+
document.SaveOptions.MarkdownExportImagesFolder = Path.GetFullPath(@"Output/");
2424
//Save a Markdown file to the file stream.
2525
document.Save(outputFileStream, FormatType.Markdown);
2626
}

0 commit comments

Comments
 (0)