I've just tried the following code snippet in a groovy console
import org.yaml.snakeyaml.Yaml
o = new Yaml().load("a: a\\nb")
o.a
and it returns
a\nb
instead of
a
b
I've followed this guide
I was wondering if it's a bug, or I'm doing something wrong...