Action

Dictate Simple List

Last update over 5 years ago - Unlisted

Steps

  • script

    var newDraft = Draft.create();
    var newList = editor.dictate();
    //'Simple List' and 'Markdown' are both viable for simple list entries.
    //If required this could be changed to Markdown without loss of functionality.
    newDraft.languageGrammar = "Simple List";
    newDraft.content = newList.replace(/^(.*)/gm, '[ ] $1');
    newDraft.update();
    editor.load(newDraft);
    editor.activate();

Options

  • After Success Default
    Notification Info
    Log Level Info
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.