CodeblockContext method renames
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 12:31:55 +0000 (13:31 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 16:59:36 +0000 (17:59 +0100)
Fixes #9577

docs/layouts/_default/_markup/render-codeblock-mermaid.html
hugolib/page__per_output.go
markup/converter/hooks/hooks.go
markup/goldmark/codeblocks/integration_test.go
markup/goldmark/codeblocks/render.go
markup/highlight/highlight.go
tpl/tplimpl/embedded/templates/_default/_markup/render-codeblock-goat.html

index 15e4fdfbb77258495efa2ae0e1300f93b14a9c27..59641551ca67e2fb2350a3779d09159f7675a50e 100644 (file)
@@ -1,4 +1,4 @@
 <div class="mermaid">
-  {{- .Code | safeHTML }}
+  {{- .Inner | safeHTML }}
 </div>
 {{ .Page.Store.Set "hasMermaid" true }}
index 4067e827faf233718b41f169e9b211bc0ae2588c..d79b152f3b7729cc72ff01499d7aa53c2dbdd6c5 100644 (file)
@@ -436,7 +436,7 @@ func (p *pageContentOutput) initRenderHooks() error {
 
                        switch v := ctx.(type) {
                        case hooks.CodeblockContext:
-                               offset = bytes.Index(p.p.source.parsed.Input(), []byte(v.Code()))
+                               offset = bytes.Index(p.p.source.parsed.Input(), []byte(v.Inner()))
                        }
 
                        pos := p.p.posFromInput(p.p.source.parsed.Input(), offset)
index e81689f04355f4f42b5b8a6a09b489716c3b16d3..54ebf405ec50b0c1b8c1302d9bcc50226f4f1118 100644 (file)
@@ -40,8 +40,8 @@ type CodeblockContext interface {
        AttributesProvider
        text.Positioner
        Options() map[string]interface{}
-       Lang() string
-       Code() string
+       Type() string
+       Inner() string
        Ordinal() int
        Page() interface{}
 }
index 001deb9f8dd387826378b5092bcb3bb1f715fb62..fcd406c2cb3fe91b0f2f5db6f87590b77bbc1b94 100644 (file)
@@ -40,12 +40,12 @@ func TestCodeblocks(t *testing.T) {
     style = 'monokai'
     tabWidth = 4
 -- layouts/_default/_markup/render-codeblock-goat.html --
-{{ $diagram := diagrams.Goat .Code }}
+{{ $diagram := diagrams.Goat .Inner }}
 Goat SVG:{{ substr $diagram.SVG 0 100 | safeHTML }}  }}|
 Goat Attribute: {{ .Attributes.width}}|
 -- layouts/_default/_markup/render-codeblock-go.html --
-Go Code: {{ .Code | safeHTML }}|
-Go Language: {{ .Lang }}|
+Go Code: {{ .Inner | safeHTML }}|
+Go Language: {{ .Type }}|
 -- layouts/_default/single.html --
 {{ .Content }}
 -- content/p1.md --
@@ -129,7 +129,7 @@ echo "p1";
 -- layouts/_default/single.html --
 {{ .Content }}
 -- layouts/_default/_markup/render-codeblock.html --
-|{{ .Code | safeHTML }}|
+|{{ .Inner | safeHTML }}|
 
 `
 
index 27252fc27cf02fd8dd3609f19738d18cac1de6f5..97604eb55fba3f07d78bf3a03ee0b4c828f4df16 100644 (file)
@@ -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
 }
 
index dac45e3121b987ec6ce997c464e652802f712635..c04fbad314ff0a3120e6951f5d594a88287509de 100644 (file)
@@ -103,7 +103,7 @@ func (h chromaHighlighter) HighlightCodeBlock(ctx hooks.CodeblockContext, opts i
                return HightlightResult{}, err
        }
 
-       err := highlight(&b, ctx.Code(), ctx.Lang(), attributes, cfg)
+       err := highlight(&b, ctx.Inner(), ctx.Type(), attributes, cfg)
        if err != nil {
                return HightlightResult{}, err
        }
@@ -125,9 +125,9 @@ func (h chromaHighlighter) RenderCodeblock(w hugio.FlexiWriter, ctx hooks.Codebl
                return err
        }
 
-       code := text.Puts(ctx.Code())
+       code := text.Puts(ctx.Inner())
 
-       return highlight(w, code, ctx.Lang(), attributes, cfg)
+       return highlight(w, code, ctx.Type(), attributes, cfg)
 }
 
 func (h chromaHighlighter) IsDefaultCodeBlockRenderer() bool {
index b1e57e94a7b30e9712fa3b4a6f21e697ffa7bf9b..f23fa046e0c1632f814d87c305c0d6856fb8d846 100644 (file)
@@ -2,7 +2,7 @@
 {{ $height := .Attributes.height }}
 {{ $class := .Attributes.class | default "" }}
 <div class="goat svg-container {{ $class }}">
-  {{ with diagrams.Goat .Code }}
+  {{ with diagrams.Goat .Inner }}
     <svg
       xmlns="http://www.w3.org/2000/svg"
       font-family="Menlo,Lucida Console,monospace"