canonical=(p1)
public
Set the output style to canonical, or not.
static VALUE set_canonical(VALUE self, VALUE style)
{
yaml_emitter_t * emitter;
Data_Get_Struct(self, yaml_emitter_t, emitter);
yaml_emitter_set_canonical(emitter, Qtrue == style ? 1 : 0);
return style;
}