Settings
General Settings
Template folder location
: Files in this folder will be available as templates.Syntax Highlighting on Desktop
adds syntax highlighting for Templater commands in edit mode.Syntax Highlighting on Mobile
adds syntax highlighting for Templater commands in edit mode on mobile. Use with caution: this may break live preview on mobile platforms."Automatic jump to cursor
automatically triggerstp.file.cursor
after inserting a template. You can also set a hotkey to manually triggertp.file.cursor
.Trigger Templater on new file creation
: Templater will listen for the new file creation event, and, if it matches a rule you've set, replace every command it finds in the new file's content. This makes Templater compatible with other plugins like the Daily note core plugin, Calendar plugin, Review plugin, Note refactor plugin, etc.- Make sure to set up rules under either Folder Templates or File Regex Template below.
- Warning: This can be dangerous if you create new files with unknown / unsafe content on creation. Make sure that every new file's content is safe on creation."
Template Hotkeys
Template Hotkeys allows you to bind a template to a hotkey.
Folder Templates
Note: This setting is hidden by default. To view it first enable the Trigger Template on new file creation
setting. And since it's mutually exclusive with File Regex Templates, enabling one will disable the other.
You can specify a template that will automatically be used on a selected folder and children using the Folder Templates
functionality. The deepest match will be used, so the order of the rules is irrelevant.
Add a rule for "/
" if you need a catch-all.
File Regex Templates
Note: This setting is hidden by default. To view it first enable the Trigger Template on new file creation
setting. And since it's mutually exclusive with Folder Templates, enabling one will disable the other.
You can specify regex declarations that a new file's path will be tested against. If a regex matches, the associated template will automatically be used. Rules are tested top-to-bottom, and the first match will be used.
End with a rule for ".*
" if you need a catch-all.
Use a tool like Regex101 to verify your regexes.
Startup Templates
Startup Templates are templates that will get executed once when Templater starts.
These templates won't output anything.
This can be useful to set up templates adding hooks to obsidian events for example.
User Script Functions
All JavaScript files in this folder will be loaded as CommonJS modules, to import custom user functions.
The folder needs to be accessible from the vault.
Check the documentation for more information.
User System Command Functions
Allows you to create user functions linked to system commands.
Check the documentation for more information.
Warning: It can be dangerous to execute arbitrary system commands from untrusted sources. Only run system commands that you understand, from trusted sources.