UNPKG

@joshfarrant/shortcuts-js

Version:
15 lines (14 loc) 441 B
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction'; /** * @action Make Rich Text from Markdown * @section Content Types > Text > Rich Text * @icon RichText * * Takes the inputted Markdown and turns it into rich text, which can then be converted to other formats. * * ```js * makeRichTextFromMarkdown(); * ``` */ declare const makeRichTextFromMarkdown: () => WFWorkflowAction; export default makeRichTextFromMarkdown;