Expand description
Processing yaml with include documents through !include <path> tag.
§Features
- include and parse recursively
yaml(andjson) files - include
markdownandtxttext files - include other types as
base64encoded binary data. - optionaly handle gracefully circular references with
!circulartag
§Example
use std::path::PathBuf;
use yaml_include::Transformer;
let path = PathBuf::from("data/sample/main.yml");
if let Ok(transformer) = Transformer::new(path, false) {
println!("{}", transformer);
};Structs§
- Transformer
- Processing yaml with include documents through
!include <path>tag.