package goldmark_test import ( "bytes" "testing" . "github.com/yuin/goldmark" "github.com/yuin/goldmark/ast" "github.com/yuin/goldmark/parser" "github.com/yuin/goldmark/renderer/html" "github.com/yuin/goldmark/testutil" ) func TestExtras(t *testing.T) { markdown := New(WithRendererOptions( html.WithXHTML(), html.WithUnsafe(), )) testutil.DoTestCaseFile(markdown, "_test/extra.txt", t, testutil.ParseCliCaseArg()...) } func TestEndsWithNonSpaceCharacters(t *testing.T) { markdown := New(WithRendererOptions( html.WithXHTML(), html.WithUnsafe(), )) source := []byte("```\na\n```") var b bytes.Buffer err := markdown.Convert(source, &b) if err != nil { t.Error(err.Error()) } if b.String() != "
a\n
\n" { t.Errorf("%s \n---------\n %s", source, b.String()) } } func TestWindowsNewLine(t *testing.T) { markdown := New(WithRendererOptions( html.WithXHTML(), )) source := []byte("a \r\nb\n") var b bytes.Buffer err := markdown.Convert(source, &b) if err != nil { t.Error(err.Error()) } if b.String() != "

a
\nb

\n" { t.Errorf("%s\n---------\n%s", source, b.String()) } source = []byte("a\\\r\nb\r\n") var b2 bytes.Buffer err = markdown.Convert(source, &b2) if err != nil { t.Error(err.Error()) } if b2.String() != "

a
\nb

\n" { t.Errorf("\n%s\n---------\n%s", source, b2.String()) } } type myIDs struct { } func (s *myIDs) Generate(value []byte, kind ast.NodeKind) []byte { return []byte("my-id") } func (s *myIDs) Put(value []byte) { } func TestAutogeneratedIDs(t *testing.T) { ctx := parser.NewContext(parser.WithIDs(&myIDs{})) markdown := New(WithParserOptions(parser.WithAutoHeadingID())) source := []byte("# Title1\n## Title2") var b bytes.Buffer err := markdown.Convert(source, &b, parser.WithContext(ctx)) if err != nil { t.Error(err.Error()) } if b.String() != `

Title1

Title2

` { t.Errorf("%s\n---------\n%s", source, b.String()) } }