Get



The Get standard function retrieves the value of a previously defined wiki page variable. This is useful when you want to control parts of the page from a single location in the markup.


##Get(string [key])


  • Name: key [Required]
    • Type: string
    • Description: The name of the variable to retrieve the value of.


##Set(MyVariable, Green)

##Get(MyVariable)

##Color(##Get(MyVariable), This is some text)



You can also set and get variables by using shorthand, which is actually preferred for cleanliness.
Set variable:
${variableName = This is the variable value}

Get variable:
${variableName}



Set
Function Calling Convention
Scope Function
Instruction Function
Standard Function


Wiki Help :: DefineSnippet
Sets a snippet variable to a block of wiki markup.
Wiki Help :: Set
Set wiki page variable value.
Wiki Help :: Snippet
Injects the value of a previously defined snippet variable.