Documentation/Parsers/yaml.md
The YAML parser accepts multiple files or directories (which it'll recursively search). Each file's content will be loaded into the context, but the parser will also generate metadata about the structure of the file.
YAML files can contain multiple documents, which is why each file can contain multiple documents in the structure below.
Note: The JSON, YAML and Plist parsers provide the same context structure, so you can easily switch input formats while keeping the same template.
The default filter for this command is: [^/]\\.(?i:ya?ml)$. That means it'll accept any file with the extensions yaml or yml.
You can provide a custom filter using the filter option, it accepts any valid regular expression. See the Config file documentation for more information.
This parser currently doesn't accept any options.