Variable Reference Guide
Smart variables are dynamic variables that can make your content more flexible. Each smart variable is constructed using a specific syntax called dot notation inside double mustache brackets. It's written as a hierarchy, starting with a top-level object and followed by properties of that object, {{object.property.subProperty}}. Notice that multiword properties use camelCase capitalization.
When youβre trying to understand what a particular smart variable might do, it can help to read them in reverse. For example:
{{page.title}} is "the title of the page" (that's relevant to the current page).
Space propertiesβ
{{space.id}}β the ID number that uniquely identifies a space{{space.key}}β the keyword in the URL that serves as a unique identifier of a space Example: http://confluence.atlassian.com/wiki/spaces/KEYWORD/pages{{space.name}}β the name of the space{{space.type}}β the type of the space ('global', 'collaboration', 'knowledge_base', 'personal'){{space.status}}β 'current' or 'archived'{{space.createdAt}}β space creation date and time
Page propertiesβ
{{page.type}}β identifies the type of relevant content as either a βpageβ or a βblogpostβ{{page.id}}β the ID number that uniquely identifies a page{{page.title}}β the published title of a page
Authorβ
{{page.author.accountId}}β accountId of the person who originally published the page{{page.author.fullName}}β the first and last name of the person who originally published the page (the βFull nameβ in their Atlassian account profile){{page.author.publicName}}β the public name of the person who originally published the page (the name or handle they use in public Atlassian forums like Community)