public class MarkdownSaveOptions extends SaveOptions
Represents Markdown save options.
Constructor and Description |
---|
MarkdownSaveOptions()
Initializes a new instance of the
MarkdownSaveOptions class. |
Modifier and Type | Method and Description |
---|---|
int |
getBlockquoteStyle() |
int |
getCodeBlocksStyles() |
static MarkdownSaveOptions |
getDefault()
Returns set of options which are compatible with default Markdown documentation.
|
int |
getExtendedSupportedFeatures() |
int |
getFeatures()
Flag set that controls which elements are converted to markdown.
|
int |
getFormatter()
Gets or sets the markdown formatting style.
|
static MarkdownSaveOptions |
getGit()
Returns set of options which are compatible with GitLab Flavored Markdown.
|
void |
setBlockquoteStyle(int value) |
void |
setCodeBlocksStyles(int value) |
void |
setExtendedSupportedFeatures(int value) |
void |
setFeatures(int value)
Flag set that controls which elements are converted to markdown.
|
void |
setFormatter(int value)
Gets or sets the markdown formatting style.
|
getResourceHandlingOptions
public MarkdownSaveOptions()
Initializes a new instance of the MarkdownSaveOptions
class.
public static MarkdownSaveOptions getDefault()
Returns set of options which are compatible with default Markdown documentation.
public static MarkdownSaveOptions getGit()
Returns set of options which are compatible with GitLab Flavored Markdown.
public int getFeatures()
Flag set that controls which elements are converted to markdown.
public void setFeatures(int value)
Flag set that controls which elements are converted to markdown.
public int getFormatter()
Gets or sets the markdown formatting style.
public void setFormatter(int value)
Gets or sets the markdown formatting style.
public int getExtendedSupportedFeatures()
public void setExtendedSupportedFeatures(int value)
public int getCodeBlocksStyles()
public void setCodeBlocksStyles(int value)
public int getBlockquoteStyle()
public void setBlockquoteStyle(int value)