Drafts Templates
Drafts lightweight template engine to allow control over how text is output in action steps. Templates are used for most values in action steps, so can be used to not only create the content of an exported file, or mail message, but to dynamically create the file name and folder, assign tags, insert timestamps and more, when an action is run.
Using Templates This page offers a reference of available tags, to get an overview start with this Using Templates article.
Table of Contents
Tag Syntax
Drafts templates use square brackets to delineate tags, like [[tag-name]]
. Some tags can also accept optional parameters, which are separated by a pipe (|
) character, like [[tag-name|parameter]]
.
Tags
Identifier Tags
[[uuid]]
A unique identifier for the current draft.[[permalink]]
A URL which can be used as a bookmark to open Drafts and select the current draft. The deprecated[[draft_open_url]]
returns this same value, butpermalink
is preferred.
Content Tags
[[draft]]
The full text of the draft.[[title]]
The first line of the draft only.[[safe_title]]
File name safe version of the first line with ASCII control characters and path separators that can interfere with file names removed (\/:*?<>|#).[[display_title]]
A cleaned and trimmed version of the first line as would be displayed in the draft list. Removes whitespace and leading “#” characters.[[body]]
The remainder of the draft text after the first line is removed.[[body_preview]]
A trimmed and shortened snippet of the body, as would be displayed in the draft list.[[selection]]
If text was selected within the draft before selecting an action, this tag will return only that selected text. If no text was selected, it will return the full text of the draft.[[selection_only]]
Returns selected text, but unlike[[selection]]
will not default to returning the entire draft if no selection was made - it will simply return a empty string.[[tags]]
Comma-separated list of tags linked to the draft.[[hashtags]]
Same as[[tags]]
, but with#
characters prepended before each tag. For use with actions that export to other systems which utilize hash tags in the text when tagging.[[line]]
The text of the current line, based on the last cursor position in the document. If a selection which spanned multiple lines was present, extends the selection to the beginning and end of the lines selected.[[line|n]]
The text of a specific line number in the draft, where “n” is the line number. i.e.[[line|1]]
,[[line|2]]
.[[line|n..n]]
In addition to specific lines, the lines tag (above) can accept ranges of lines, such as[[line|2..5]]
for lines 2 through 5. This initial or trailing number in the range can be omitted to indicate the beginning or end, i.e.[[line|2..]]
is line 2 through the end of the draft,[[line|..4]]
is the first for lines of the draft. This tag also support negative indexes, which count back from the last line of the draft, e.g.[[line|-1]]
returns the last line of the draft.[[selection_start]]
The integer index of the start location of the last text selection in the draft.[[selection_length]]
The number of characters in the last text selection in the draft.
Dates and Times
[[date]]
Timestamp in the format YYYY-MM-DD.[[date|format]]
Timestamp, formatted based on a custom strftime format string. For example[[date|%m-%d-%Y]]
becomes “01–02–2013”.[[created|format]]
Same as “date”, but returns the timestamp for the creation of the draft, rather than the current time.[[modified|format]]
Same as “date”, but returns the timestamp for the last modification date of the draft content, rather than the current time.[[time]]
Timestamp in the format YYYY-MM-DD-HH-MM-SS.
Adjusting Dates
The date tags in the section above can all also accept an optional adjustment expression that moves the date forward and backward in time. Expressions are in the format (+|-)(integer) (unit)
. Example expressions:
+1 year
: Advanced the date by one year.-3 months -12 hours
: Move the date backwards by three months and 12 hours.
Supported unit values are: year, month, day, hour, minute, second. Each can be provided in singular or plural form.
Adjustments are applied in order, and are “smart” around calendars. For example applying “+1 month” to a date on May 31st will result in a date of June 30th, since June only has 30 days.
To adjust a date tag, include an additional parameter before the format string, separate by a |
character, examples:
[[date|+1 year|%Y-%m-%d]]
: Today’s date next year.[[date|+2 days +2 hours|%Y-%m-%d %h-%m]]
: Today’s date plus two days and two hours.
Date adjustment can also done in script. See adjustDate
function documentation.
Locations
[[longitude]]
The current device location longitude.[[latitude]]
The current device location latitude.[[created_longitude]]
The location longitude where the draft was created.[[created_latitude]]
The location latitude where the draft was created.[[modified_longitude]]
The location longitude where the content of the draft was last modified.[[modified_latitude]]
The location latitude where the content of the draft was last modified.
Utility Tags
[[template|path]]
Inserts a template stored in a file iniCloud Drive/Drafts/Library/Templates
. “path” should be the related path to a file which exists in that folder, for example:[[template|my-site-template.txt]]
. File will be loaded an evaluated as if it’s text was inline in the current template, allowing re-use of templates across actions.[[clipboard]]
The current contents of the iOS clipboard.
Custom Tags
In addition to the predefined tags always available, scripts in an action can create custom tags which become available to action steps run after the script in the same action. This is useful if a scripted action step processes text to create a value that then needs to be inserted in a later step that shares that text. The below example shows a simple script with creates a tag.
let s = "My String Value";
draft.setTemplateTag("mytag", s);
// after running this script, templates later
// in the action will have available a [[mytag]] tag.
Custom template tag values can also be created using the Define Template Tag action step
Other Special markup
{{ }}
Wrap text in double-curly brackets to have the text URL encoded.%% %%
Wrap text in double percent signs to run the enclosed text through the Markdown engine and convert it to HTML. This is useful to export Markdown to HTML, use in HTML Preview steps or other purposes.<<snippet-abbreviation>>
[iOS only] A valid TextExpander abbreviation wrapped in double brackets will be expanded at runtime. This is a legacy feature, and not recommended. For more information on this option and limitations, see our TextExpander ingeration guide.
Escaping
If you want to use something which would otherwise be evaluated as a template tag or function but not have it evaluated in actions, it needs to be escaped by placeing a single backslash () character before it. So, for example \[[title]]
would be ignored and not replaced with the title of the draft. The escaping backslash would be removed, however.