The Psalms

Action Search

Type: Action
Keyboard Shortcut:
Icon: search
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 079FAC47-6520-4AE9-89DF-0474063ECAC7
Description:

Send to Saved Messages (Telegram)

Type: Action
Keyboard Shortcut: ⌃G
Icon: chat-message
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: E804AA1D-DA2A-4A17-ACB5-3AEB870B3380
Description:
Send draft to Telegram, opens my personal Saved Messages chat via my phone number.

To Raindrop via Telegram

Type: Action
Keyboard Shortcut:
Icon: chat-message
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 39EF4050-F835-43EE-B185-558875CBFB04
Description:
Send draft to Telegram, opens my personal Saved Messages chat via my phone number.

Tweet with Tweetbot

Type: Action
Keyboard Shortcut:
Icon: action_twitter_filled
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 72DB584D-B507-4C5D-B4DC-41F61BF6B0CB
Description:
Send to Tweetbot compose window.

Embed

Type: Action
Keyboard Shortcut:
Icon: 565-cassette-tape
Colour: violet
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 14A40371-7C9C-472C-9DC5-E844A26B81D8
Description:
Version 0.1 Assuming the URL to an audio file is in your clipboard, this action uses said URL as the source file for an embedded audio player using the <audio> element.

Steps

  1. Insert Text:
<audio controls>
  <source src="">
</audio>

Contact/Feedback

Extra Details

iDocs

Type: Action
Keyboard Shortcut:
Icon: format-italic
Colour: indigo
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: A68F960D-5EDC-45D8-9898-E68B173AAFC0
Description:
Sends to my iCloud email address from Outlook.

iDocs (copy)

Type: Action
Keyboard Shortcut:
Icon: format-italic
Colour: indigo
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 38EB1260-84A3-4112-B9AB-CA2B6F4338F3
Description:
Sends to my iCloud email address from Outlook.

Strikethrough

Type: Action
Keyboard Shortcut: ⌃S
Icon: format-strikethrough
Colour: red
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: 7FD88B8E-AB4F-4839-A395-9444974A2D1C
Description:
Markdown for striking text out. Adds “~~” to the beginning of a line or the beginning and end of a selected block of text.

The Psalms Custom Preview

Type: Action
Keyboard Shortcut:
Icon: action_preview
Colour: blue
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: F7E0CA10-02A1-4469-A940-CE3E10BB18CE
Description:
Read CSS file named “markdown-style.css” in the iCloud “Drafts5” folder, and use it as the style for a Markdown preview.

TAD-Insert yyyy-mm-dd

Type: Action
Keyboard Shortcut:
Icon: calendar-date
Colour: orange
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: 25637BED-D8FA-4483-9132-68F6DA426F22
Description:
Insert a date stamp in the format yyyy-mm-dd

TAD-Insert Drafts Version

Type: Action
Keyboard Shortcut:
Icon: info
Colour: gray
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: F9CFBB2C-882E-4723-A65E-D06FD0213191
Description:
Insert the Drafts app version.

TAD-Deduplicate All (Lines)

Type: Action
Keyboard Shortcut:
Icon: arrow-merge
Colour: red
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: FA6BAA77-07F3-4EF7-A0AC-9EB172C24083
Description:
Deduplicates lines in the order they occur. i.e. only the first instance of the line will be retained. This action does not sort the content.

Append comment to Todoist task

Type: Action
Keyboard Shortcut:
Icon: commit
Colour: orange
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 3BE24787-AA7C-4387-9FE9-3EFB1250E365
Description:

"Drafts Directory: Append comment to Todoist task"

//heavily borrowing from AgileTortoise's Import Project script //Draft appends as comment to an existing task in Todoist // utility function let mapIds = (arr, key, valKey) => { let result = {}; arr.forEach(o => { result[o[key]] = o[valKey]; }) return result; } let f = () => { // create Todoist object and load projects let todoist = Todoist.create(); let projects = todoist.getProjects(); if (!projects) { console.log("Unable to retreive data from Todoist."); return false; } // create prompt let p = Prompt.create(); p.title = "Select Project"; // add projects let projectLookup = mapIds(projects, "name", "id"); let projectNames = Object.keys(projectLookup); p.addPicker("project", "Project", [projectNames], [0]); p.addButton("Select"); if (!p.show()) { context.cancel(); return true; } // read values from prompt let projectIndex = p.fieldValues["project"][0]; let projectName = projectNames[projectIndex]; let projectID = projectLookup[projectName]; let tasks = todoist.getTasks({ "project_id": projectID }); if (!tasks) { alert("No tasks in this project"); return false; } //create tasks prompt let pTasks = Prompt.create(); pTasks.title = "Select Task"; //add tasks let taskLookup = mapIds(tasks, "content", "id"); let taskNames = Object.keys(taskLookup); pTasks.addPicker("task", "Task", [taskNames], [0]); pTasks.addButton("Select"); if (!pTasks.show()) { context.cancel(); return true; } //read values from task prompt let taskIndex = pTasks.fieldValues["task"][0]; let taskName = taskNames[taskIndex]; let taskID = taskLookup[taskName]; //add comment let comment = todoist.createComment({ "task_id": taskID, "content": draft.content }); console.log(Comment added to ${taskName} in ${projectName}); } if (!f()) { context.fail(); }

-"Drafts Directory: Append comment to Todoist task"

Send to Telegram

Type: Action
Keyboard Shortcut:
Icon: chat-message
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 87D854F8-DE94-4FA8-8A40-E11C486CA831
Description:
Send draft to Telegram, opens the contacts page, pick a contact and draft will be on the input field.

Create Gist

Type: Action
Keyboard Shortcut:
Icon: 488-github
Colour: orange
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: E4C2CEA6-283F-46FB-915C-41E39218BD9C
Description:
TAD-Create GitHub Gist from Draft

Create a new GitHub gist from the current draft. You can run this action stand alone, but you can also include it and call it with a template action step set for the GitHub user ID (account).

Fetch Gists

Type: Action
Keyboard Shortcut:
Icon: 488-github
Colour: violet
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: 487226D3-BDD7-4F70-9A12-F4153319AB7E
Description:
Fetch the content of a GitHub gist to new drafts - one draft per file. You can run this action stand alone, but you can also include it and call it with a template action step to set for the GitHub user ID (account). The action includes a window that lets you select a gist by description.

Drafts 5 Scripting API Documentation

Type: Action
Keyboard Shortcut:
Icon: 460-api2
Colour: violet
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: A9ABDF69-8D55-4404-A5DC-112D285955A9
Description:
Displays a menu for selecting Documentation page and opens an in app web browser to display selected page.

Keyboard Shortcuts Export

Type: Action
Keyboard Shortcut: ⇧⌃K
Icon: 341-keyboard
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 50C15556-3561-443D-BB49-F7FC1245DE3A
Description:

List Action Shortcuts, Comma-Delimited

Type: Action
Keyboard Shortcut:
Icon: 356-signpost
Colour: green
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: 8F2BF88E-825E-4954-B958-B5AA4C7D63D1
Description:
A modified version of TAD-List Action Shortcuts that exports a comma-delimited list of keyboard shortcuts instead of using :.

Original description:

Ouput details of all actions with keyboard shortcuts to a new draft. Action name is followed by a colon, a space, and then the keyboard shortcut. Also deals with special key triggers (arrow keys and tab).

Timestamp

Type: Action
Keyboard Shortcut: ⇧⌃T
Icon: 598-clock
Colour: blue
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: F9A840DA-C465-4E7A-B173-1E537F6A9010
Description:
TAD-Insert yyyy-mm-dd

Selection Word Count

Type: Action
Keyboard Shortcut: ⌃W
Icon: 585-calculator
Colour: none
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: ADD2D656-8E11-4466-BEB7-FD02C03AC9DF
Description:
TAD-Selection Word Count

Trash

Type: Action
Keyboard Shortcut:
Icon: 636-trash
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: AB369272-D52E-486D-A87F-84E244D7DEFB
Description:
TAD-Trash Note

Search Actions

Type: Action
Keyboard Shortcut:
Icon: search
Colour: indigo
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 1
Unique ID: 229A9C12-0850-4443-ABBF-646096D0A6BB
Description:
TAD-Search Actions

Drafts Link

Type: Action
Keyboard Shortcut: ⇧⌃C
Icon: action_url
Colour: indigo
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 9782726D-C842-4682-A71E-43BC465FE234
Description:
TAD-Copy Draft Link

Last Workspace

Type: Action
Keyboard Shortcut:
Icon: clipboard-back
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 7A48C342-E889-423A-8B6D-7507528C826C
Description:
TAD-Load Previous Workspace

Next Workspace

Type: Action
Keyboard Shortcut:
Icon: briefcase-next
Colour: green
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 02C9F9C8-9652-4095-B210-548FD19B58DA
Description:
TAD-Load Next Workspace

Draft Info

Type: Action
Keyboard Shortcut: ⌃I
Icon: 442-information-symbol1
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: D6051232-53DB-4159-8045-2C776E28D39E
Description:
TAD-Show Draft Info

Dark/Light Toggle

Type: Action
Keyboard Shortcut: ⇧⌃L
Icon: lighter
Colour: yellow
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: B45E79C6-FEA0-4E5A-9DAC-897040071A17
Description:
TAD-Toggle App Theme

Typewriter Toggle

Type: Action
Keyboard Shortcut:
Icon: typewriter
Colour: indigo
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 0
Unique ID: DC48EDE7-8B92-4B6E-832D-43B386D2748D
Description:
TAD-Toggle Typewriter Mode

Fetch URL Content to New Draft

Type: Action
Keyboard Shortcut:
Icon: caret-down-double
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: C49A4147-5478-430C-AB8C-F6B2E0B0B546
Description:
TAD-Fetch URL Content to New Draft

Import File

Type: Action
Keyboard Shortcut:
Icon: file-badge
Colour: red
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 5ABCC386-0CF7-489B-8037-CBBF82E021AA
Description:
TAD-File Import With Tags

Load The Psalms

Type: Action
Keyboard Shortcut: ⌥.
Icon: checkbox
Colour: pink
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: B24FAC3A-CEE8-4BA4-AC65-3365DDEC0846
Description:
app.TA_loadActionListByName("ThoughtAsylum - Power User");

Draft Link

Type: Action
Keyboard Shortcut:
Icon: link
Colour: green
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 19A9B6E4-42C5-45FF-8908-849C25C4995C
Description:
TAD-Link for Draft (Title)

Preview MMD

Type: Action
Keyboard Shortcut: ⌥⌘/
Icon: branch
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 7FF25B9B-A198-49E8-930F-B5E11BF74936
Description:
TAD-Prime Preview MMD

Load Most Changed Draft

Type: Action
Keyboard Shortcut:
Icon: ribbon
Colour: orange
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: C2BCAF85-15FE-4103-901D-2D816CCBE444
Description:
TAD-Load Most Changed Draft

Restore Psalms Action Group

Type: Action
Keyboard Shortcut:
Icon: cancel
Colour: none
Confirm to Run: true
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: A80E0256-7756-4A2C-A3AB-533DB97D4902
Description:
Sortof a potential recovery method for this Action Group, I suppose.


drafts5://actionGroup?data=%7B%22name%22:%22The%20Psalms%22,%22hidden%22:false,%22tintColor%22:%22blue%22,%22actions%22:%5B%7B%22uuid%22:%2214A40371-7C9C-472C-9DC5-E844A26B81D8%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22template%22:%22%3Caudio%20controls%3E%5Cn%20%20%3Csource%20src%3D%5C%22%5B%5Bclipboard%5D%5D%5C%22%3E%5Cn%3C%5C/audio%3E%22%7D,%22type%22:%22insertText%22,%22isEnabled%22:true,%22uuid%22:%225C5CE284-9E32-41B1-B6A9-A1AB095D1720%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22A%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Embed%20%3Caudio%3E%20Element%22,%22shiftKey%22:true%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22violet%22,%22actionDescription%22:%22%60Version%200.1%60%5CnAssuming%20the%20URL%20to%20an%20audio%20file%20is%20in%20your%20clipboard,%20this%20action%20uses%20said%20URL%20as%20the%20source%20file%20for%20an%20embedded%20audio%20player%20using%20the%20%60%3Caudio%3E%60%20element.%5Cn%5Cn*%20%5B%60%3Caudio%3E%60%20Element%20Documentation%5D(https:%5C/%5C/developer.mozilla.org%5C/en-US%5C/docs%5C/Web%5C/HTML%5C/Element%5C/audio)%5Cn%23%23%20Steps%5Cn1.%20Insert%20Text:%5Cn%60%60%60%5Cn%3Caudio%20controls%3E%5Cn%20%20%3Csource%20src%3D%5C%22%5C%22%3E%5Cn%3C%5C/audio%3E%5Cn%60%60%60%5Cn%23%23%20Contact%5C/Feedback%5Cn*%20%5BMy%20profile%20on%20the%20Drafts%20Community%20Forums%5D(https:%5C/%5C/forums.getdrafts.com%5C/u%5C/blue)%5Cn*%20%5BThis%20Action%E2%80%99s%20Issue%20on%20my%20iOS-specific%20GitHub%20Repository%5D(https:%5C/%5C/github.com%5C/extratone%5C/i%5C/issues%5C/51)%5Cn%5Cn%23%23%23%20Extra%20Details%5Cn-%20**Drafts%20Version:**%2026.2.4%5Cn-%20**Drafts%20Subscription:**%20Pro%5Cn-%20**Device:**%20iPhone%5Cn-%20**Operating%20System:**%20iOS%20%5Cn-%20**OS%20Build:**%2014.5%22,%22keyUseIcon%22:true,%22icon%22:%22565-cassette-tape%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Embed%20%3Caudio%3E%20Element%22%7D,%7B%22uuid%22:%22A68F960D-5EDC-45D8-9898-E68B173AAFC0%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22oauthIdentifier%22:%22%22,%22ccRecipients%22:%22ihadtopee@gmail.com%22,%22toRecipients%22:%22asphaltapostle@icloud.com%22,%22subject%22:%22%E2%80%9C%5B%5Btitle%5D%5D%E2%80%9D%20%7C%20%5B%5Bdate%5D%5D,%5B%5Btime%5D%5D%22,%22bccRecipients%22:%22%22,%22sendAsHTML%22:%22true%22,%22body%22:%22%5B%5Btitle%5D%5D%5Cn%5Cn%5B%5Bbody%5D%5D%5Cn%5Cn%3E%20%5B%5Bselection%5D%5D%5Cn%5Cn***%5Cn%5B%5Btags%5D%5D%5Cn%5B%5Buuid%5D%5D%22%7D,%22type%22:%22outlook%22,%22isEnabled%22:true,%22uuid%22:%22A1284106-73DB-482D-86E9-DBFD8F1C4EE0%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22iDocs%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22indigo%22,%22actionDescription%22:%22Sends%20to%20my%20iCloud%20email%20address%20from%20Outlook.%22,%22keyUseIcon%22:false,%22icon%22:%22format-italic%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22iDocs%22%7D,%7B%22uuid%22:%227FD88B8E-AB4F-4839-A395-9444974A2D1C%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22script%22:%22%5C/%5C/%20See%20online%20documentation%20for%20examples%5Cn%5C/%5C/%20http:%5C/%5C/getdrafts.com%5C/scripting%5Cn%5Cn%5C/%5C/%20Apply%20Markdown%20strike%20to%20selection,%20or%20insert%20~~%20if%20no%20selection%5Cnlet%20markup%20%3D%20%5C%22~~%5C%22;%5Cn%5Cnvar%20sel%20%3D%20editor.getSelectedText();%5Cnvar%20selRange%20%3D%20editor.getSelectedRange();%5Cn%5Cnif%20(!sel%20%7C%7C%20sel.length%20%3D%3D%200)%20%7B%5Cn%20%20editor.setSelectedText(markup);%5Cn%20%20editor.setSelectedRange(selRange%5B0%5D+markup.length,0);%5Cn%7D%5Cnelse%20%7B%5Cn%20%20editor.setSelectedText(markup+sel+markup);%5Cn%20%20editor.setSelectedRange(selRange%5B0%5D+selRange%5B1%5D+(markup.length*2),0);%5Cn%7D%22%7D,%22type%22:%22script%22,%22isEnabled%22:true,%22uuid%22:%22E9E83376-D73D-4657-B694-6D13568E3574%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:0,%22keyCommand%22:%7B%22optionKey%22:true,%22input%22:%22S%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Strikethrough%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22red%22,%22actionDescription%22:%22Markdown%20for%20striking%20text%20out.%20%20Adds%20%E2%80%9C~~%E2%80%9D%20to%20the%20beginning%20of%20a%20line%20or%20the%20beginning%20and%20end%20of%20a%20selected%20block%20of%20text.%20%22,%22keyUseIcon%22:true,%22icon%22:%22format-strikethrough%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Strikethrough%22%7D,%7B%22uuid%22:%22FA2FE221-18DA-4A8A-99E8-ED496D6B8A11%22,%22steps%22:%5B%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22empty%22,%22discoverabilityTitle%22:%22Invalid%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22none%22,%22actionDescription%22:%22%22,%22keyUseIcon%22:false,%22icon%22:%22%22,%22visibility%22:480,%22backingIsSeparator%22:true,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Workspace%20Switcher%20(copy)%22%7D,%7B%22uuid%22:%22F7E0CA10-02A1-4469-A940-CE3E10BB18CE%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22script%22:%22%5C/%5C/%20read%20stylesheet%20from%20file%20in%20iCloud%5Cnvar%20fm%20%3D%20FileManager.create(false);%5Cnvar%20css%20%3D%20fm.read(%5C%22markdown-style.css%5C%22);%5Cn%5Cn%5C/%5C/%20place%20in%20template%20tag%5Cndraft.setTemplateTag(%5C%22css%5C%22,%20css);%5Cn%22,%22allowAsync%22:%22false%22%7D,%22type%22:%22script%22,%22isEnabled%22:true,%22uuid%22:%22DC783629-4418-4068-8256-EBD1E360D30A%22%7D,%7B%22platforms%22:3,%22data%22:%7B%22template%22:%22%3C!DOCTYPE%20html%3E%5Cn%3Chtml%20dir%3D%5C%22auto%5C%22%3E%5Cn%3Chead%3E%5Cn%3Ctitle%3EPreview%3C%5C/title%3E%5Cn%3Cmeta%20name%3D%5C%22viewport%5C%22%20content%3D%5C%22width%3Ddevice-width,%20initial-scale%3D1%5C%22%3E%5Cn%3Cstyle%3E%5Cn%5B%5Bcss%5D%5D%5Cn%3C%5C/style%3E%5Cn%3C%5C/head%3E%5Cn%3Cbody%3E%5Cn%20%20%25%25%5B%5Bdraft%5D%5D%25%25%5Cn%3C%5C/body%3E%5Cn%3C%5C/html%3E%5Cn%22,%22hideInterface%22:%22true%22%7D,%22type%22:%22htmlpreview%22,%22isEnabled%22:true,%22uuid%22:%22BDDD58CB-0811-4F17-B5A1-449FF157EC6D%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22Preview%22,%22shouldConfirm%22:false,%22disposition%22:0,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22P%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22The%20Psalms%20Custom%20Preview%22,%22shiftKey%22:true%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22blue%22,%22actionDescription%22:%22Read%20CSS%20file%20named%20%E2%80%9Cmarkdown-style.css%E2%80%9D%20in%20the%20iCloud%20%E2%80%9CDrafts5%E2%80%9D%20folder,%20and%20use%20it%20as%20the%20style%20for%20a%20Markdown%20preview.%20%22,%22keyUseIcon%22:false,%22icon%22:%22action_preview%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22The%20Psalms%20Custom%20Preview%22%7D,%7B%22uuid%22:%2225637BED-D8FA-4483-9132-68F6DA426F22%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22template%22:%22%5B%5Bdate%7C%20%25Y-%25m-%25d%5D%5D%22%7D,%22type%22:%22insertText%22,%22isEnabled%22:true,%22uuid%22:%22BC769CE6-6C81-4360-A42D-F0B06A482473%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22TAD-Insert%20yyyy-mm-dd%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22orange%22,%22actionDescription%22:%22Insert%20a%20date%20stamp%20in%20the%20format%20yyyy-mm-dd%22,%22keyUseIcon%22:false,%22icon%22:%22calendar-date%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22TAD-Insert%20yyyy-mm-dd%22%7D,%7B%22uuid%22:%22F9CFBB2C-882E-4723-A65E-D06FD0213191%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22script%22:%22draft.setTemplateTag(%5C%22version%5C%22,%20app.version);%22,%22allowAsync%22:%22false%22%7D,%22type%22:%22script%22,%22isEnabled%22:true,%22uuid%22:%224A209E56-08C7-4029-A783-AA8FE9C10406%22%7D,%7B%22platforms%22:3,%22data%22:%7B%22template%22:%22%5B%5Bversion%5D%5D%22%7D,%22type%22:%22insertText%22,%22isEnabled%22:true,%22uuid%22:%22160757F2-4D01-4CB7-99BD-291BC914F38F%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:0,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22TAD-Insert%20Drafts%20Version%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22gray%22,%22actionDescription%22:%22Insert%20the%20Drafts%20app%20version.%22,%22keyUseIcon%22:true,%22icon%22:%22info%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22TAD-Insert%20Drafts%20Version%22%7D,%7B%22uuid%22:%22FA6BAA77-07F3-4EF7-A0AC-9EB172C24083%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%2237341FCD-D3D3-4412-ADA2-57A70F775BE9%22%7D,%7B%22platforms%22:3,%22data%22:%7B%22script%22:%22draft.TA_deduplicateLines();%22,%22allowAsync%22:%22false%22%7D,%22type%22:%22script%22,%22isEnabled%22:true,%22uuid%22:%2210D57B6A-A015-4B7D-A224-98E8E5EDB55E%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22TAD-Deduplicate%20All%20(Lines)%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22red%22,%22actionDescription%22:%22Deduplicates%20lines%20in%20the%20order%20they%20occur.%20%20i.e.%20only%20the%20first%20instance%20of%20the%20line%20will%20be%20retained.%5CnThis%20action%20does%20*not*%20sort%20the%20content.%22,%22keyUseIcon%22:true,%22icon%22:%22arrow-merge%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22TAD-Deduplicate%20All%20(Lines)%22%7D,%7B%22uuid%22:%22E4C2CEA6-283F-46FB-915C-41E39218BD9C%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Create%20GitHub%20Gist%20from%20Draft%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22BEB094A7-BB8C-4E70-8CED-9F66AA845B4F%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Create%20Gist%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22orange%22,%22actionDescription%22:%22TAD-Create%20GitHub%20Gist%20from%20Draft%5Cn%5Cn%3E%20Create%20a%20new%20GitHub%20gist%20from%20the%20current%20draft.%20You%20can%20run%20this%20action%20stand%20alone,%20but%20you%20can%20also%20include%20it%20and%20call%20it%20with%20a%20template%20action%20step%20set%20for%20the%20GitHub%20user%20ID%20(%60account%60).%22,%22keyUseIcon%22:false,%22icon%22:%22488-github%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Create%20Gist%22%7D,%7B%22uuid%22:%22487226D3-BDD7-4F70-9A12-F4153319AB7E%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Fetch%20GitHub%20Gist%20Files%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22F6E06C19-7DEB-4665-8A97-8145C15A72D6%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Fetch%20Gists%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22violet%22,%22actionDescription%22:%22Fetch%20the%20content%20of%20a%20GitHub%20gist%20to%20new%20drafts%20-%20one%20draft%20per%20file.%20You%20can%20run%20this%20action%20stand%20alone,%20but%20you%20can%20also%20include%20it%20and%20call%20it%20with%20a%20template%20action%20step%20to%20set%20for%20the%20GitHub%20user%20ID%20(%60account%60).%20The%20action%20includes%20a%20window%20that%20lets%20you%20select%20a%20gist%20by%20description.%22,%22keyUseIcon%22:false,%22icon%22:%22488-github%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Fetch%20Gists%22%7D,%7B%22uuid%22:%22A9ABDF69-8D55-4404-A5DC-112D285955A9%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22script%22:%22%5C/%5C/%20See%20online%20documentation%20for%20examples%5Cn%5C/%5C/%20https:%5C/%5C/reference.getdrafts.com%5C/%5Cn%5Cnvar%20base%20%3D%20%5C%22https:%5C/%5C/reference.getdrafts.com%5C/objects%5C/%5C%22;%5Cn%5Cnvar%20opts%20%3D%20%5B%5C%22Action%5C%22,%20%5C%22ActionGroup%5C%22,%20%5C%22Alarm%5C%22,%20%5C%22App%5C%22,%20%5C%22Box%5C%22,%20%5C%22Calendar%5C%22,%20%5C%22CallbackURL%5C%22,%20%5C%22Console%5C%22,%20%5C%22Context%5C%22,%20%5C%22Credential%5C%22,%20%5C%22Device%5C%22,%20%5C%22Draft%5C%22,%20%5C%22Dropbox%5C%22,%20%5C%22Editor%5C%22,%20%5C%22Event%5C%22,%20%5C%22FileManager%5C%22,%20%5C%22Global%5C%22,%20%5C%22GoogleDrive%5C%22,%20%5C%22HTTP%5C%22,%20%5C%22HTTPResponse%5C%22,%20%5C%22Mail%5C%22,%20%5C%22Message%5C%22,%20%5C%22MultiMarkdown%5C%22,%20%5C%22OneDrive%5C%22,%20%5C%22Prompt%5C%22,%20%5C%22Reminder%5C%22,%20%5C%22ReminderList%5C%22,%20%5C%22Things%5C%22,%20%5C%22Todoist%5C%22,%20%5C%22Twitter%5C%22,%20%5C%22Wordpress%5C%22,%20%5C%22Workspace%5C%22,%20%5C%22XMLRPC%5C%22,%20%5C%22XMLRPCResponse%5C%22%5D;%5Cn%5Cnvar%20p%20%3D%20Prompt.create();%5Cn%5Cnp.title%20%3D%20%5C%22Drafts%205%5C%22;%5Cnp.message%20%3D%20%5C%22Scripting%20documentation%20index%5C%22;%5Cn%5Cnvar%20i%20%3D%200;%5Cnwhile%20(i%20%3C%20opts.length)%7B%5Cn%5Ctp.addButton(opts%5Bi%5D);%5Cn%5Cti++;%5Cn%7D;%5Cn%5Cnvar%20didSelect%20%3D%20p.show();%5Cn%5Cnvar%20url%20%3D%20base%20+%20p.buttonPressed%20+%20%5C%22.html%5C%22;%5Cn%5Cnif%20(didSelect)%20%7B%5Cn%20%20%20%20app.setClipboard(url);%5Cn%7D%20else%20%7B%5Cn%20%20%20%20context.cancel();%5Cn%7D;%22%7D,%22type%22:%22script%22,%22isEnabled%22:true,%22uuid%22:%22B2BBC06F-E8A1-4AF3-8236-8A8EB264DF7C%22%7D,%7B%22platforms%22:3,%22data%22:%7B%22template%22:%22%5B%5Bclipboard%5D%5D%22,%22useSafari%22:%22true%22,%22encodeTags%22:%22false%22%7D,%22type%22:%22url%22,%22isEnabled%22:true,%22uuid%22:%22BF2069E2-1E0D-4EC0-A3FC-D504C847B2A5%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22API%20Docs%22,%22shouldConfirm%22:false,%22disposition%22:0,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Drafts%205%20Scripting%20API%20Documentation%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22violet%22,%22actionDescription%22:%22Displays%20a%20menu%20for%20selecting%20Documentation%20page%20and%20opens%20an%20in%20app%20web%20browser%20to%20display%20selected%20page.%20%22,%22keyUseIcon%22:true,%22icon%22:%22460-api2%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Drafts%205%20Scripting%20API%20Documentation%22%7D,%7B%22uuid%22:%2250C15556-3561-443D-BB49-F7FC1245DE3A%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-List%20Action%20Shortcuts%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%224531949E-5B2A-4195-ABBF-715D87E2D00E%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Keyboard%20Shortcuts%20Export%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22gray%22,%22actionDescription%22:%22%22,%22keyUseIcon%22:false,%22icon%22:%22341-keyboard%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Keyboard%20Shortcuts%20Export%22%7D,%7B%22uuid%22:%22F9A840DA-C465-4E7A-B173-1E537F6A9010%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Insert%20yyyy-mm-dd%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22F8A1E5BC-F328-4D5B-BDC5-B1248F2C585A%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Timestamp%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22blue%22,%22actionDescription%22:%22TAD-Insert%20yyyy-mm-dd%22,%22keyUseIcon%22:false,%22icon%22:%22598-clock%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Timestamp%22%7D,%7B%22uuid%22:%22ADD2D656-8E11-4466-BEB7-FD02C03AC9DF%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Selection%20Word%20Count%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%2235630167-2D64-4989-949C-4DEA9D297BF0%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:true,%22input%22:%22W%22,%22controlKey%22:false,%22commandKey%22:true,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Word%20Count%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22none%22,%22actionDescription%22:%22TAD-Selection%20Word%20Count%22,%22keyUseIcon%22:false,%22icon%22:%22585-calculator%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Word%20Count%22%7D,%7B%22uuid%22:%22AB369272-D52E-486D-A87F-84E244D7DEFB%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Trash%20Note%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22ACA417A1-FB82-43FA-AFBA-955F332E8100%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:0,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22-%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Trash%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22gray%22,%22actionDescription%22:%22TAD-Trash%20Note%22,%22keyUseIcon%22:false,%22icon%22:%22636-trash%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Trash%22%7D,%7B%22uuid%22:%22F2C3C05F-AD1C-4FE5-8112-04F822A63DF6%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Toggle%20Last%20Two%20Modified%20Drafts%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%220A01BB52-574D-4885-8EF1-66E65CDF57C9%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%23TAB%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Toggle%20Last%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22orange%22,%22actionDescription%22:%22TAD-Toggle%20Last%20Two%20Modified%20Drafts%22,%22keyUseIcon%22:false,%22icon%22:%22477-skip-backward2%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Toggle%20Last%22%7D,%7B%22uuid%22:%22229A9C12-0850-4443-ABBF-646096D0A6BB%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Search%20Actions%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%225E2AC5EB-7920-459A-8722-F2D70A7DC6DF%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:0,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%5C/%22,%22controlKey%22:false,%22commandKey%22:true,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Search%20Actions%22,%22shiftKey%22:false%7D,%22logLevel%22:1,%22groupDisposition%22:0,%22notificationType%22:1,%22tintColor%22:%22indigo%22,%22actionDescription%22:%22TAD-Search%20Actions%22,%22keyUseIcon%22:false,%22icon%22:%22search%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Search%20Actions%22%7D,%7B%22uuid%22:%229782726D-C842-4682-A71E-43BC465FE234%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Copy%20Draft%20Link%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%224A39DCDC-2BB1-4E65-A491-8144FEB70635%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22C%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Drafts%20Link%22,%22shiftKey%22:true%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22indigo%22,%22actionDescription%22:%22TAD-Copy%20Draft%20Link%22,%22keyUseIcon%22:false,%22icon%22:%22action_url%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Drafts%20Link%22%7D,%7B%22uuid%22:%227A48C342-E889-423A-8B6D-7507528C826C%22,%22steps%22:%5B%7B%22platforms%22:1,%22data%22:%7B%22name%22:%22TAD-Load%20Previous%20Workspace%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%2283CABD9B-497A-4863-A73B-00265DC4D281%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:true,%22input%22:%22%23LEFT%22,%22controlKey%22:false,%22commandKey%22:true,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Last%20Workspace%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22gray%22,%22actionDescription%22:%22TAD-Load%20Previous%20Workspace%22,%22keyUseIcon%22:false,%22icon%22:%22clipboard-back%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Last%20Workspace%22%7D,%7B%22uuid%22:%2202C9F9C8-9652-4095-B210-548FD19B58DA%22,%22steps%22:%5B%7B%22platforms%22:1,%22data%22:%7B%22name%22:%22TAD-Load%20Next%20Workspace%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%225B18B932-97A6-4D55-A417-8FAAB5DDC5D2%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:true,%22input%22:%22%23RIGHT%22,%22controlKey%22:false,%22commandKey%22:true,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Next%20Workspace%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22green%22,%22actionDescription%22:%22TAD-Load%20Next%20Workspace%22,%22keyUseIcon%22:false,%22icon%22:%22briefcase-next%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Next%20Workspace%22%7D,%7B%22uuid%22:%22D6051232-53DB-4159-8045-2C776E28D39E%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Show%20Draft%20Info%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%227F4B4B0F-CED8-410B-A916-D7BEA852659F%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Draft%20Info%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22gray%22,%22actionDescription%22:%22TAD-Show%20Draft%20Info%22,%22keyUseIcon%22:false,%22icon%22:%22442-information-symbol1%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Draft%20Info%22%7D,%7B%22uuid%22:%22B45E79C6-FEA0-4E5A-9DAC-897040071A17%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Toggle%20App%20Theme%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%226F5E8189-84AE-4987-B751-52D4D25BF329%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22L%22,%22controlKey%22:true,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Dark%5C/Light%20Toggle%22,%22shiftKey%22:true%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22yellow%22,%22actionDescription%22:%22TAD-Toggle%20App%20Theme%22,%22keyUseIcon%22:false,%22icon%22:%22lighter%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Dark%5C/Light%20Toggle%22%7D,%7B%22uuid%22:%22DC48EDE7-8B92-4B6E-832D-43B386D2748D%22,%22steps%22:%5B%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:true,%22input%22:%22T%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Typewriter%20Toggle%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22indigo%22,%22actionDescription%22:%22TAD-Toggle%20Typewriter%20Mode%22,%22keyUseIcon%22:false,%22icon%22:%22typewriter%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Typewriter%20Toggle%22%7D,%7B%22uuid%22:%22C49A4147-5478-430C-AB8C-F6B2E0B0B546%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Fetch%20URL%20Content%20to%20New%20Draft%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22A7EB51EE-D022-4200-863F-13CCDBD46068%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Fetch%20URL%20Content%20to%20New%20Draft%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22none%22,%22actionDescription%22:%22TAD-Fetch%20URL%20Content%20to%20New%20Draft%22,%22keyUseIcon%22:false,%22icon%22:%22caret-down-double%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Fetch%20URL%20Content%20to%20New%20Draft%22%7D,%7B%22uuid%22:%225ABCC386-0CF7-489B-8037-CBBF82E021AA%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-File%20Import%20With%20Tags%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%2258F20F45-D9F9-44DC-AAD3-3C6B12DB4B9E%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Import%20File%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22red%22,%22actionDescription%22:%22TAD-File%20Import%20With%20Tags%22,%22keyUseIcon%22:false,%22icon%22:%22file-badge%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Import%20File%22%7D,%7B%22uuid%22:%22B24FAC3A-CEE8-4BA4-AC65-3365DDEC0846%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22template%22:%22drafts:%5C/%5C/x-callback-url%5C/loadActionGroup?name%3DGROUP-NAME%22,%22encodeTags%22:%22true%22,%22waitForResponse%22:%22false%22%7D,%22type%22:%22callbackUrl%22,%22isEnabled%22:true,%22uuid%22:%2225B7AA15-0CD5-4FF4-B9A9-94D3A40F99F2%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:true,%22input%22:%22.%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Load%20The%20Psalms%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22pink%22,%22actionDescription%22:%22%60app.TA_loadActionListByName(%5C%22ThoughtAsylum%20-%20Power%20User%5C%22);%60%22,%22keyUseIcon%22:false,%22icon%22:%22checkbox%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Load%20The%20Psalms%22%7D,%7B%22uuid%22:%2219A9B6E4-42C5-45FF-8908-849C25C4995C%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Link%20for%20Draft%20(Title)%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%223828AA43-B720-45EC-8C53-E35BD7B5A33A%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Draft%20Link%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22green%22,%22actionDescription%22:%22TAD-Link%20for%20Draft%20(Title)%22,%22keyUseIcon%22:false,%22icon%22:%22link%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Draft%20Link%22%7D,%7B%22uuid%22:%227FF25B9B-A198-49E8-930F-B5E11BF74936%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Prime%20Preview%20MMD%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22F31F05A6-DE09-49D5-A324-A5DF0035FE36%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Preview%20MMD%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22gray%22,%22actionDescription%22:%22TAD-Prime%20Preview%20MMD%22,%22keyUseIcon%22:false,%22icon%22:%22branch%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Preview%20MMD%22%7D,%7B%22uuid%22:%22C2BCAF85-15FE-4103-901D-2D816CCBE444%22,%22steps%22:%5B%7B%22platforms%22:3,%22data%22:%7B%22name%22:%22TAD-Load%20Most%20Changed%20Draft%22%7D,%22type%22:%22includeAction%22,%22isEnabled%22:true,%22uuid%22:%22D94578B7-38CC-440C-A9E8-89EC9DE3AFEA%22%7D%5D,%22backingPlatforms%22:3,%22shortName%22:%22%22,%22shouldConfirm%22:false,%22disposition%22:3,%22keyCommand%22:%7B%22optionKey%22:false,%22input%22:%22%22,%22controlKey%22:false,%22commandKey%22:false,%22type%22:%22action%22,%22discoverabilityTitle%22:%22Load%20Most%20Changed%20Draft%22,%22shiftKey%22:false%7D,%22logLevel%22:2,%22groupDisposition%22:0,%22notificationType%22:2,%22tintColor%22:%22orange%22,%22actionDescription%22:%22TAD-Load%20Most%20Changed%20Draft%22,%22keyUseIcon%22:false,%22icon%22:%22ribbon%22,%22visibility%22:480,%22backingIsSeparator%22:false,%22groupUUID%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22assignTags%22:%5B%5D,%22name%22:%22Load%20Most%20Changed%20Draft%22%7D%5D,%22modifiedAt%22:641338420.61343801,%22disposition%22:0,%22uuid%22:%2216A2B316-FD3E-4266-913B-4A343EC3122A%22,%22visibility%22:480,%22createdAt%22:641338420.61343706,%22icon%22:%22532-tractor%22,%22changeTag%22:%22eg7%22%7D

As I understand it, the entirety of this Action Group’s data as it appeared on

Add To Notion

Type: Action
Keyboard Shortcut:
Icon: special-alert
Colour: yellow
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 2
Unique ID: D3ECAF73-FE2F-4435-8768-9022F5F88D74
Description:
Set of functions for Notion API + action that adds current draft to Notion in the page you use as your inbox. If it’s a single line, it’s added as a note, if it’s multiple lines, it’s a page. Currently text is added as one block and it doesn’t convert markdown.

DupeLoad

Type: Action
Keyboard Shortcut:
Icon: 511-copy-documents
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: E2CD38A1-F3EC-4DC7-BA85-E8E274B98D84
Description:
TAD-Duplicate Draft and Load

DIFF

Type: Action
Keyboard Shortcut:
Icon: action_preview
Colour: green
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: C58D1F93-E3BB-47EE-AC04-A4128A239849
Description:
Marks up changes (insertions, deletions) between current draft and a previous version (prompts for selection).

Preview respects tab indents without invoking code blocks (by design).

Diff code from: https://johnresig.com/projects/javascript-diff-algorithm/ CSS styles for ins/del tags adapted from: Yuanchuan (https://yuanchuan.name/) via https://freefrontend.com/html-del-ins-css/

fetch

Type: Action
Keyboard Shortcut:
Icon: 401-globe
Colour: green
Confirm to Run: false
Notifications: None
Log Level: None
Number of Steps: 4
Unique ID: 58EE3EA8-C139-451C-9409-2C10B88C8DEB
Description:
Fetches the content of the URL on the clipboard and puts the content into a new draft.

Edit Markdown Table

Type: Action
Keyboard Shortcut:
Icon: border-all
Colour: gray
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: A892D5D5-9F2D-4AF2-A966-9891C561F265
Description:
Demonstration action that uses the Table Magic Markdown table editing library to modify Markdown tables in an advanced HTML Preview.

This tools allows editing of table in forms, CSV, etc. Select an existing Markdown table in the draft before running the action to pre-populate the editor.

Synonym

Type: Action
Keyboard Shortcut:
Icon: signs-alt
Colour: indigo
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 8584909D-7811-4275-BE68-FE6411AD4FAE
Description:
TAD-Replace with Synonym

Fantastically Good Event Parser

Type: Action
Keyboard Shortcut:
Icon: calendar-dates
Colour: red
Confirm to Run: true
Notifications: All
Log Level: All
Number of Steps: 2
Unique ID: 7FB51E0D-A578-4A89-A747-08196942D12F
Description:
Split draft into lines and create events for each using Fantastical-style syntax.

Mac Safari Tab Links (MD)

Type: Action
Keyboard Shortcut:
Icon: action_url
Colour: yellow
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 4
Unique ID: 16901BFF-02A7-4026-8790-E2BB8727CBA5
Description:
A Mac only action that inserts the URLs for all of the open Safari tabs at the current cursor position. The content is formatted as a Markdown list of links.

Save images in Drafts' Previews folder

Type: Action
Keyboard Shortcut:
Icon: 568-photo
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 2
Unique ID: 7930D729-6C35-4D85-9C79-44C486DD0107
Description:
This Drafts action + shortcut does the following:

  1. Let the user select the image files and save them in the Drafts Previews folder (iCloud Drive / Drafts / Library / Previews /).
  2. Insert those image links into the draft.

Shortcut  https://www.icloud.com/shortcuts/567d5d896af24343ac736cb40b0647c2

https://sorashima.hatenablog.com/entry/ObsidianImagePreviewOnDrafts

Current Inbox Count

Type: Action
Keyboard Shortcut:
Icon: hashtag
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 488BA16F-4E48-466C-82D9-28F3952A3F8E
Description:
Display an alert with a count of drafts in the inbox currently displayed in the draft list.

TAD-Auto Document Action Group

Type: Action
Keyboard Shortcut:
Icon: 513-document
Colour: orange
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: B564BF39-649C-41F5-B842-22923F70A085
Description:
With a direct install link for an action group on the clipboard, this action processes the details and produces a Markdown formatted summary in a new draft.

TAD-Toggle Last Two Modified Drafts

Type: Action
Keyboard Shortcut: ⇧#TAB
Icon: transfer
Colour: orange
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: BAA07085-B6EE-43D1-9C36-8C3DCAEE5D6D
Description:
Switches between the two most recently modified drafts.

TAD-MD to Plain Message

Type: Action
Keyboard Shortcut:
Icon: action_message
Colour: orange
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: A0B06804-5654-4E3E-B91D-DA2E297F230C
Description:
Convert Markdown to plain text for messaging.

In Development/Ideaing

Type: Action
Keyboard Shortcut:
Icon:
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 0
Unique ID: 82F7C978-FF5A-41D1-867A-E4AF830BC053
Description:

Zalgo?

Type: Action
Keyboard Shortcut:
Icon:
Colour: yellow
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 40D66F07-4AB0-4FF7-A085-04B2F3996A1B
Description:

TAD-Copy Action Group Items (Markdown)

Type: Action
Keyboard Shortcut:
Icon: action_clipboard_filled
Colour: violet
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: 3285D564-231C-4990-8581-AFB9C728F587
Description:
Create a markdown structure of the action group on the clipboard.

Not Functioning/Deprecated

Type: Action
Keyboard Shortcut:
Icon:
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 0
Unique ID: 7D394BAA-92F4-44ED-9FC2-D53B14FB00B9
Description:

Template

Type: Action
Keyboard Shortcut:
Icon: folder-upload
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 79C84C3D-35B6-49F8-B012-7D3538CED417
Description:
Runs New Draft with Template

Copy to Notion

Type: Action
Keyboard Shortcut:
Icon: 319-shipping-crate
Colour: gray
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 2
Unique ID: 92B6883A-329D-4B98-814B-7FC9A103CF5C
Description:
Copy draft and open Notion app to be pasted

APPLE NOTES

Type: Action
Keyboard Shortcut:
Icon: apple-bite
Colour: red
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 2
Unique ID: 780692BD-989B-433D-A400-9A3E95D6C779
Description:
Create a new note in Apple Notes converting the Markdown in Drafts to HTML.

Action uses AppleScript and is only compatible with Mac.

Tweet and Toot

Type: Action
Keyboard Shortcut:
Icon: 343-scribble
Colour: blue
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 2
Unique ID: CE48F720-0CAA-4F1E-BF92-FEA80112982D
Description:
This is the same as the built in micro.blog script, but you can add a post title by adding a line with “# ” (include the space) in the first line of the draft. The first line will be the title (minus the pound sign and space) and everything below that will be the content.

If there is no “# “ on the first line, the entire draft is assumed to be the content and no title will be added.

Simplenote

Type: Action
Keyboard Shortcut:
Icon:
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 0DA2C1D4-67CE-4980-BD0D-9AE7C2A71CEA
Description:

TAD-MD-Lines to Numbered List

Type: Action
Keyboard Shortcut:
Icon: list-numbered
Colour: orange
Confirm to Run: false
Notifications: Errors
Log Level: Errors
Number of Steps: 2
Unique ID: E25E4A0F-6777-41B7-A19D-38E47B7A52F3
Description:
Markup each line that is part of the selection as a numbered list item using a standard numeric of 1 as the list identifier.

Terminology Test

Type: Action
Keyboard Shortcut:
Icon: 587-dictionary
Colour: none
Confirm to Run: false
Notifications: All
Log Level: All
Number of Steps: 1
Unique ID: 99FB9F20-E0A7-4912-8D80-93694F103667
Description: