Skip to main content

Macro properties

Macro properties can be declared in .yml files.

You can name these files whatever_you_want.yml, and nest them arbitrarily deeply in subfolders.

macros/<filename>.yml
version: 2

macros:
- name: <macro name>
description: <markdown_string>
docs:
show: true | false
arguments:
- name: <arg name>
type: <string>
description: <markdown_string>
- ... # declare properties of additional arguments

- name: ... # declare properties of additional macros

0