summaryrefslogtreecommitdiffstats
path: root/markup/goldmark/convert.go
diff options
context:
space:
mode:
Diffstat (limited to 'markup/goldmark/convert.go')
-rw-r--r--markup/goldmark/convert.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/markup/goldmark/convert.go b/markup/goldmark/convert.go
index 2a66cc184..50e7bcb8a 100644
--- a/markup/goldmark/convert.go
+++ b/markup/goldmark/convert.go
@@ -62,9 +62,7 @@ func (p provide) New(cfg converter.ProviderConfig) (converter.Provider, error) {
}), nil
}
-var (
- _ converter.AnchorNameSanitizer = (*goldmarkConverter)(nil)
-)
+var _ converter.AnchorNameSanitizer = (*goldmarkConverter)(nil)
type goldmarkConverter struct {
md goldmark.Markdown
@@ -156,7 +154,6 @@ func newMarkdown(pcfg converter.ProviderConfig) goldmark.Markdown {
)
return md
-
}
var _ identity.IdentitiesProvider = (*converterResult)(nil)
@@ -267,7 +264,6 @@ func (c *goldmarkConverter) Convert(ctx converter.RenderContext) (result convert
ids: rcx.ids.GetIdentities(),
toc: pctx.TableOfContents(),
}, nil
-
}
var featureSet = map[identity.Identity]bool{
@@ -329,7 +325,6 @@ func newHighlighting(cfg highlight.Config) goldmark.Extender {
}
w.WriteString("</div>")
-
}),
)
}