Playing with Templates in Drafts
Warning: Trying to access array offset on value of type null in /home/public/kirby/vendors/parsedownextra.php on line 305
Warning: Trying to access array offset on value of type null in /home/public/kirby/vendors/parsedownextra.php on line 305
Each case of automation is unique to the individual and how you organize your life, and the objects around it, is a personal subject. When it comes down how we treat our text files, I doubt that freeform writing covers all the reports, posts, journal entries or most of the notes you jot down.
This post will show a simple way to create dynamic structures in Drafts that you can use whenever you have a specific use for a text model.
Why Drafts?
I'm very comfortable working with Drafts for most of my writing, despite lacking the deep automation features offered by Editorial or access to AJAX requests, which are available on 1Writer. Still, you can't beat how simple it is to craft, search for, and trigger actions in Drafts1.
There are also features and implementations that make Drafts a great tool to expand templates, for example, you can chain multiple actions from the app itself, as we gonna do now to open a draft (our template), expand its tags and build a new draft with the generated content. Afterwards, we can even automate actions in the new draft, which we gonna cover later in the article.
Building a template
I'm going to use one of the templates I use to publish in the site as an example:
%%Blog Post%%
Title:
----
Date: [[date|%Y-%m-%d %H:%M]]
----
Excerpt:
----
Text:
Running this template will generate the following draft:
Title:
----
Date: 2016-05-22 11:59
----
Excerpt:
----
Text:
First thing to notice is that the action reserves the first line for a title that is not duplicated to the generated draft2 and that the [[date]]
field was expanded to its value3. This would work with any tag available in Drafts, such as latitude, longitude and clipboard 4. You can get the action below and play with it a little:
Creating prompts
One of the things I missed in the previous example is to create prompts on the fly. Introduced in version 4.2, prompts are one of the best features of Drafts and since they work like Launch Center Pro lists, you can set its contents dynamically. So I created a template tag for prompts and I run an action that generates the list for us after we expand our template:
Now when you run this action with a content like:
[[prompt:Yes=true|No=false|Skip]]
You'll get a nice prompt like this:

If you select "Yes", the [[prompt]]
will be replaced by true, if you choose "No", the new value will be false, but if you choose the "Skip", the value will be Skip as well.
It was difficult to support multiple prompts from the same action since you can't invoke a prompt from JavaScript, therefore I can't iterate over multiple prompts and call a prompt for each of them, neither can I skip the prompt step entirely if there's none. You also can't make an action to include itself using the Include Action step or build any sort of recursion with this method, since the step doesn't trigger the included action, it adds its steps. My workaround was to make the action re-open and re-run the action until there's no prompt to parse, so the action looks like this:
- A script looks for a
[[prompt]]
tag in the current draft, parses its values and stores everything into custom template tags:prompt_object
andprompt_buttons
. - A prompt step will use the values from the
prompt_buttons
to create its list. - Another script will pick the option you selected in the prompt and match it against all the options from the prompt using the
prompt_object
tag. This step also replaces the content and verifies if there are more instances of the[[prompt]]
tag afterwards. - Re-opens the draft, if there are more prompts to expand, re-calls the action itself. This trigger is set in the previous step.
This workaround is a tad disappointing because I wanted this template engine to be customizable and that you could plug more tags and workflows to parse your templates. You can still do that if you don't use prompts or anything that can't be ignored. You can create modular plugins and add them to a After Template action, which you'd trigger from the New from Template action. Also, nothing prevents you from appending more actions after all prompts are filled.
Using Launch Center Pro
I've been evaluating the role of some tools in my workflow and Launch Center Pro gained more rounds to keep its spot and it also is the best place to trigger your templates since you can just archive them and call them from the URL scheme with their UUID. For example, this is a valid action:
x-drafts4://x-callback-url/open?uuid=968B36CF-4638-49D8-902D-FD0310723816&action={{New From Template}}
Easiest way to get that link is to run the following action that copied the link to the draft and append the action parameter afterwards:
Then in Launch Center Pro you can set multiple actions to trigger different templates by UUID but also different template engines, for example, I have a New From Template action that triggers Fill Prompts afterwards.

To create your own, duplicate the New from Template action and add an action parameter to the link called in the URL action step, like &action={{Fill Prompts}}
. I admit it is a little cumbersome to call the right actions in sequence, but the ultimate goal was to build something you could use in several scenarios.
There are some complex features that could improve this workflow, definitely the one I'd appreciate the most is the ability to request user input from a Script step, easiest way would probably be a version of the Prompt tag, but it probably is much more complicated due to the asynchronous aspect of JavaScript.
My second request is broader and would require all Drafts' actions to share the same context, because right now actions and keys don't have the same environment. You can't access the draft
object from the keyboard (unless you run an action from it) and you can't actually set a selection from an action (I tried very hard to build a custom template tag that would set the cursor whenever you wanted).
Reading this, I think I'll stick to just asking Greg to keep the sepia theme.
-
Also, the sepia theme is gorgeous. ↩
-
The percent signs are not a syntax used for titles in the template, actually, if you run them through the template engine, it will expand as raw HTML. ↩
-
Friendly reminder: the tags are only expanded once, so you can't create a recursion. ↩
-
If you're still using TextExpander, this template would also expand fenced snippets if the option is turned on. ↩