ExportStrategy

DocumentConverterOptions.ExportStrategy property

Gets or sets the strategy for customizing resource written to the Markdown output.

public IExportStrategy ExportStrategy { get; set; }

Property Value

The URI export strategy that determines how resource links are produced. Default is null, which keeps the Aspose-generated URIs unchanged.

The image export strategy that determines how images are processed during conversion. Default is ExportImagesAsBase64Strategy.

Remarks

You can choose from several built-in strategies:

Or implement your own strategy by creating a class that implements IImageExportStrategy.

See Also