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