Functions$$yamlOn this page$$yaml Converts an object to YAML format Usage​ { "$$yaml": /* value */ } "$$yaml:{input}" Returns​ string Examples​ InputDefinitionOutput{ "a": "1", "b": [ "B", 2 ], "c": true, "d": { "e": [ "E", "800" ] }}{ "$$yaml": "$" }a: '1'b: - B - 2c: trued: e: - E - '800'