print_yaml
Prints a value as a YAML document.
print_yaml( input:any, [include_document_markers=bool] )
Description
Section titled “Description”input:any
Section titled “input:any”The value to print as YAML.
include_document_markers = bool (optional)
Section titled “include_document_markers = bool (optional)”Includes the “start of document” and “end of document” markers in the result.
Defaults to false
.
Examples
Section titled “Examples”from {x: { x: 0, y: 1 } }, { x: [0,1,2,] }x = x.print_yaml()
{ x: "x: 0\ny: 1",}{ x: "- 0\n- 1\n- 2",}