mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
15 lines
257 B
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)
|
|
}
|