# Annotation

Annotations follow strings, numbers, and booleans in variables in the form of

- <key>: <value>
  > <annotation>

and items in lists in the form of

- <key>:
  * <item>
    > <annotation>

Examples:

# Example
- key 1: value
  > Annotation for string
- key 2: $1$
  > Annotation for number
- key 3: `TRUE`
  > Annotation for boolean
# Example
- list:
  * value
    > Annotation for string
  * $1$
    > Annotation for number
  * `TRUE`
    > Annotation for boolean

TIP

Annotations are ignored when compiled to datasets.

Empty lines around annotations are allowed, but discouraged.

# Example
- key 1: value 1
- key 2: value 2
  > Annotation
- key 3: value 3

  > Valid annotation

- key 4: value 4