goldmark/options_test.go
2019-05-16 19:53:54 +09:00

16 lines
284 B
Go

package goldmark
import (
"github.com/yuin/goldmark/parser"
"testing"
)
func TestAttributeAndAutoHeadingID(t *testing.T) {
markdown := New(
WithParserOptions(
parser.WithAttribute(),
parser.WithAutoHeadingID(),
),
)
DoTestCaseFile(markdown, "_test/options.txt", t)
}