package markdown import "testing" func TestParagraph(t *testing.T) { c, err := Parse("bonsoir", nil) if err != nil { t.Fatal(err) } if c != "

bonsoir

" { t.Errorf("failed, got %s", c) } }