MarkdownSaveOptions.MarkdownSvgImageSavingHandler

public static interface MarkdownSaveOptions.MarkdownSvgImageSavingHandler

Represents the markdown SVG image saving handler of #SvgImageSavingDelegate.SvgImageSavingDelegate event.

Methods

MethodDescription
invoke(ISvgImage svgImage, String[] link)Invoked for each SVG image during Markdown export.

invoke(ISvgImage svgImage, String[] link)

public abstract boolean invoke(ISvgImage svgImage, String[] link)

Invoked for each SVG image during Markdown export. Return true to use the specified link, or false to apply the default saving logic.

Parameters:

ParameterTypeDescription
svgImageISvgImageThe SVG image being exported.
linkjava.lang.String[]The Markdown link to use when returning true.

Returns: boolean