diff options
author | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2022-02-27 13:31:55 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2022-02-27 17:59:36 +0100 |
commit | f7109771a038e0237350dcfbe20f1036e9c8a46b (patch) | |
tree | c9eed611c56a8969509e40bc2db27d4e5e77d4ef /markup/goldmark/codeblocks/render.go | |
parent | e1f696911ebbf870f9b6b814421dc880945a6b9a (diff) | |
download | hugo-f7109771a038e0237350dcfbe20f1036e9c8a46b.tar.gz hugo-f7109771a038e0237350dcfbe20f1036e9c8a46b.zip |
CodeblockContext method renames
Fixes #9577
Diffstat (limited to 'markup/goldmark/codeblocks/render.go')
-rw-r--r-- | markup/goldmark/codeblocks/render.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/markup/goldmark/codeblocks/render.go b/markup/goldmark/codeblocks/render.go index 27252fc27..97604eb55 100644 --- a/markup/goldmark/codeblocks/render.go +++ b/markup/goldmark/codeblocks/render.go @@ -150,11 +150,11 @@ func (c *codeBlockContext) Page() interface{} { return c.page } -func (c *codeBlockContext) Lang() string { +func (c *codeBlockContext) Type() string { return c.lang } -func (c *codeBlockContext) Code() string { +func (c *codeBlockContext) Inner() string { return c.code } |