feat: enable parsing of markdown fences
1 file changed, 2 insertions(+), 0 deletions(-)
changed files
M internal/nixdocs/nixdocs.go → internal/nixdocs/nixdocs.go
@@ -1,6 +1,7 @@ package nixdocs import ( + fences "github.com/stefanfritsch/goldmark-fences" "github.com/yuin/goldmark" "github.com/yuin/goldmark/extension"@@ -10,6 +11,7 @@ func WithNixDocsExtensions() goldmark.Option { return goldmark.WithExtensions( extension.NewLinkify(), + &fences.Extender{}, optlink.New(), ) }