Template Variables
Summary
Pre-defined template variables that are automatically included in your templates at run time
You can apply template variables by using the following syntax: {{ VARIABLE }}
Globally Available
CURRENT_YEAR: The current yearCURRENT_MONTH: The month as two digits (example:02for February)CURRENT_WEEK: The week of the year as two digits (example:17)CURRENT_DAY: The day of the month as two digits (example:08)CURRENT_HOUR: The current hour in 24-hour clock format (example:23)CURRENT_MINUTE: The current minute as two digits (example:05)CURRENT_SECOND: The current second as two digits (exmplae:32)CURRENT_QUARTER: The current quarter as one-indexed single digit number (example:1for first quarter)CURRENT_MONTH_NAME: The month as string name (example:January)CURRENT_MONTH_NAME_SHORT: The month as abbreviated string name (example:Janfor January)CURRENT_DAY_OF_WEEK: equivalent of javascript getDay method (example:3for Monday)CURRENT_DAY_OF_WEEK_ABBR: The day of week, as an abbreviated localized string (example:Wedfor Wednesday)CURRENT_DAY_OF_WEEK_FULLThe day of week, as an unabbreviated localized string (example:Wednesday),CURRENT_DAY_OF_WEEK_SINGLE(example:Wfor Wednesday),TITLE: The title of the note as appeared on frontmatterFNAME: name of current fileDESC: description of current file (equivalent to thedescfield in the Dendron frontmatter)
Children
Backlinks