We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Type: string Markdown.parseText(string inlineText)
Takes a string of inline markdown elements and converts them to markup which can be used in Roblox's rich text engine and HTML.
local text = Markdown.parseText("*Bold* _Italics_ ~Strike~ `Code`") print(text) --> <b>Bold</b> <i>Italics</i> <s>Strike</s> <font face="RobotoCode">Code</font>
There was an error while loading. Please reload this page.