package markdown import "testing" func TestCode(t *testing.T) { t.Run("code", func(t *testing.T) { t.Run("mono", test("`mono`", `

mono

`)) t.Run("combo", test("bonjour `code` !", `

bonjour code !

`)) t.Run("mult-line", test("```\n"+"raw\nhehe"+"```", `
raw
hehe
`)) }) }