package markdown import "testing" func TestQuote(t *testing.T) { content := ` > Bonsoir, je suis un **code** avec une source ` lxs := lex(content, new(Option)) tree, err := ast(lxs) if err != nil { t.Fatal(err) } c, err := tree.Eval(nil) if err != nil { t.Fatal(err) } if c != `
Bonsoir, je suis un code
avec une source