markdownifyToString
Parses a markdown string to a plain text string.
Signature
markdownifyToString(
markdown: string,
features?: MarkdownFeatures,
placeholder?: string
): string
Parameters
Name | Type | Optional | Description |
---|---|---|---|
markdown | string | No | Specifies the markdown text to parse. |
features | MarkdownFeatures | Yes | Specifies the features to parse (defaults to All ). |
placeholder | string | Yes | Specifies a string for empty variables (defaults to ___ ). |
Return value
Returns a plain text string where all markdown is removed/parsed.