|
|
|
|
|
MarkdownToText (Function) In french: MarkdownVersTexte Converts a Markdown string to plain text (without tags).
PROCEDURE CheckMarkdown(string_to_check is string)
IF MarkdownToText(string_to_check) = string_to_check THEN
RETURN False
END
RETURN True
Syntax
<Result> = MarkdownToText(<Markdown string>)
<Result>: Character string Text string (without tags). <Markdown string>: Character string Markdown string.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|