summaryrefslogtreecommitdiffstats
path: root/markup/converter/converter.go
diff options
context:
space:
mode:
Diffstat (limited to 'markup/converter/converter.go')
-rw-r--r--markup/converter/converter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/markup/converter/converter.go b/markup/converter/converter.go
index dac0a6b73..1ea301aa6 100644
--- a/markup/converter/converter.go
+++ b/markup/converter/converter.go
@@ -119,11 +119,11 @@ func (b Bytes) Bytes() []byte {
// DocumentContext holds contextual information about the document to convert.
type DocumentContext struct {
- Document interface{} // May be nil. Usually a page.Page
+ Document any // May be nil. Usually a page.Page
DocumentID string
DocumentName string
Filename string
- ConfigOverrides map[string]interface{}
+ ConfigOverrides map[string]any
}
// RenderContext holds contextual information about the content to render.