@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 441 B
TypeScript
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;