@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 604 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @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();
* ```
*/
const makeRichTextFromMarkdown = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getrichtextfrommarkdown',
WFWorkflowActionParameters: {},
});
exports.default = makeRichTextFromMarkdown;
//# sourceMappingURL=makeRichTextFromMarkdown.js.map