package markdown import "testing" func TestCallout(t *testing.T) { t.Run("callout", func(t *testing.T) { t.Run("simple", test(` > [!NOTE] `, `

note

`)) t.Run("multiline", test(` > [!NOTE] Hey :3 > content 1 > content 2 `, `

Hey :3

content 1

content 2

`)) }) }