Aspose::Words::Saving::MarkdownSaveOptions::get_ImagesFolderAlias method

MarkdownSaveOptions::get_ImagesFolderAlias method

Specifies the name of the folder used to construct image URIs written into a document. Default is an empty string.

System::String Aspose::Words::Saving::MarkdownSaveOptions::get_ImagesFolderAlias() const

Remarks

When you save a Document in Markdown format, Aspose.Words needs to save all images embedded in the document as standalone files. ImagesFolder allows you to specify where the images will be saved and ImagesFolderAlias allows to specify how the image URIs will be constructed.

If ImagesFolderAlias is not an empty string, then the image URI written to Markdown will be ImagesFolderAlias + .

If ImagesFolderAlias is an empty string, then the image URI written to Markdown will be ImagesFolder + .

If ImagesFolderAlias is set to ‘.’ (dot), then the image file name will be written to Markdown without path regardless of other options.

See Also