@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 606 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Make Markdown from Rich Text
* @section Content Types > Text > Rich Text
* @icon RichText
*
* Converts the rich text passed as input to Markdown text (comparable to Aaron Swartz's html2text script).
*
* ```js
* makeMarkdownFromRichText();
* ```
*/
const makeMarkdownFromRichText = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getmarkdownfromrichtext',
WFWorkflowActionParameters: {},
});
exports.default = makeMarkdownFromRichText;
//# sourceMappingURL=makeMarkdownFromRichText.js.map