ImageExportMode

public enum ImageExportMode

Specifies how images are handled during document export to markup formats (Markdown, HTML).

Entries

Link copied to clipboard

Images are not included in the exported output.

Link copied to clipboard

Images are embedded inline as base64-encoded data URIs.

Link copied to clipboard

Images are saved as separate files in a sibling "{output}_resources" folder next to the output file and referenced by relative path. Requires writing to a file path (or a ) so the resources folder can be derived from the output file name.

Functions

Link copied to clipboard
public static ImageExportMode valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
public static Array<ImageExportMode> values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.