MarkdownSettings

public final class MarkdownSettings

Settings for Markdown. Values fall back through three levels: document → SDK → built-in default. Writes target the document only when set on a document's settings, otherwise the SDK globally when set on SdkSettings.

Constructors

Link copied to clipboard
public void MarkdownSettings()

Functions

Link copied to clipboard
public final boolean getEnableInlineFormatting()
Controls whether inline text formatting (bold, italic) is preserved in the Markdown output using standard markers (**bold**, *italic*).
Link copied to clipboard
public final boolean getEnableSemanticBlockFormatting()
Controls whether footnotes and captions are rendered with semantic Markdown markers (> , *…*) and whether pictures are emitted at all (![alt] / [Figure]).
Link copied to clipboard
public final ImageExportMode getImageExport()
Controls how images are exported when converting documents to Markdown.
Link copied to clipboard
public final boolean getIncludeHeadersAndFooters()
Controls whether running headers and footers are included in the Markdown output.
Link copied to clipboard
public final void setEnableInlineFormatting(boolean value)
Controls whether inline text formatting (bold, italic) is preserved in the Markdown output using standard markers (**bold**, *italic*).
Link copied to clipboard
public final void setEnableSemanticBlockFormatting(boolean value)
Controls whether footnotes and captions are rendered with semantic Markdown markers (> , *…*) and whether pictures are emitted at all (![alt] / [Figure]).
Link copied to clipboard
public final void setImageExport(ImageExportMode value)
Controls how images are exported when converting documents to Markdown.
Link copied to clipboard
public final void setIncludeHeadersAndFooters(boolean value)
Controls whether running headers and footers are included in the Markdown output.