astParserFor | * rules: ParserRules | (...) => ReactElement | Creates a new AST parser function based on specific rules; the returned function has the same parameters of the other parser functions |
parse | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | Converts a markdown string to React elements |
parseAutoModerationSystemMessage | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but highlights text defined in highlightText parse option |
parseAutoModerationSystemMessageToAST | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parseToAST function but highlights text defined in highlightText parse option |
parseEmbedTitle | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with codeBlock, br, mention, channel and roleMention rules omitted |
parseEmbedTitleToAST | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parseToAST function but with codeBlock, br, mention, channel and roleMention rules omitted |
parseForumPostGuidelines | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with paragraph and newline rules omitted |
parseForumPostMostRecentMessage | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with some emoji sizing changes and blockQuote, codeBlock and br rules omitted |
parseGuildEventDescription | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with codeBlock, blockQuote and br rules omitted |
parseGuildVerificationFormRule | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with codeBlock, br and blockQuote rules omitted |
parseInlineReply | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with blockQuote, codeBlock and br rules omitted |
parseInlineReplyToAST | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parseToAST function but with blockQuote, codeBlock and br rules omitted |
parseToAST | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | Converts a markdown string to AST |
parseTopic | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parse function but with inlineCode, codeBlock, br and blockQuote rules omitted |
parseTopicToAST | text: string inline: boolean opts: ParseOptions postProcess: (tree: unknown, inline: boolean) => void | ReactElement | parseToAST function but with inlineCode, codeBlock, br and blockQuote rules omitted |
reactParserFor | * rules: ParserRules | (...) => ReactElement | Creates a new parser function based on specific rules; the returned function has the same parameters of the other parser functions |