Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 722 Bytes

File metadata and controls

32 lines (19 loc) · 722 Bytes

<export>

Node > Meta > Field > Export

This element is the default interface for the export parser.

The element will export the value of another node that it is linked to.

Note that the position of nodes being referenced generally does not matter; <export> tags can be placed before the node it is linked to.

Attributes

parser : 'export'

Examples

Basic usage:

<!-- Exports: 'Hello, World' -->
<export link='export' />

<node id='export' >Hello, World!</node>

Shorthand for converting a node to export the value of another node using the '=' modifier:

<node =example />

<node id='example' >{ 1 + 1 }</node>