Liquid Template

A template according to the Liquid Templating syntax. Specified by :: liquid ::.

When processed, will be processed and converted into an output fragment.

Parameters

A liquid template fragment may specify the following parameters:

Parameter Description Cardinality
id A unique identifier used to select this liquid template fragment. Optional
outputType Specifies the kind of fragment that should be generated. Optional
  • If omitted, an HTML fragment will be generated.
  • All the parameters specified for a liquid template are passed on to the resulting output fragment for use.

    For example, if the liquid template is generating HTML output (because the parameter outputType: html is specified), adding a css: simple parameter to the liquid template will control the css selected by the HTML output.

    Example

    :: liquid ::
    id: template
    outputType: markdown
    ---
    This is my sample Markdown Template. My template id is {{ id }}.