goldmark/extra_test.go

15 lines
257 B
Go

package goldmark
import (
"testing"
"github.com/yuin/goldmark/renderer/html"
)
func TestDefinitionList(t *testing.T) {
markdown := New(WithRendererOptions(
html.WithXHTML(),
html.WithUnsafe(),
))
DoTestCaseFile(markdown, "_test/extra.txt", t)
}