tpl/diagrams: Rename the SVG accessor to Wrapped
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 17:28:35 +0000 (18:28 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 18:51:40 +0000 (19:51 +0100)
Not perfect, but it gets it in line with the other .Inner/.Wrapped combos.

markup/goldmark/codeblocks/integration_test.go
tpl/diagrams/diagrams.go

index fb83e7d24aebbdef6239e405e401a36b92891aa9..1a70b0bf0abb03b9093c0931e9625391f50482c0 100644 (file)
@@ -41,7 +41,7 @@ func TestCodeblocks(t *testing.T) {
     tabWidth = 4
 -- layouts/_default/_markup/render-codeblock-goat.html --
 {{ $diagram := diagrams.Goat .Inner }}
-Goat SVG:{{ substr $diagram.SVG 0 100 | safeHTML }}  }}|
+Goat SVG:{{ substr $diagram.Wrapped 0 100 | safeHTML }}  }}|
 Goat Attribute: {{ .Attributes.width}}|
 -- layouts/_default/_markup/render-codeblock-go.html --
 Go Code: {{ .Inner | safeHTML }}|
index b0ddf5a42f1726270dee6ba7f41dfed9b4268474..60ebfb902fdefa500e4dcbf28c22ca1f113b252e 100644 (file)
@@ -25,13 +25,13 @@ import (
 )
 
 type SVGDiagram interface {
+       // Wrapped returns the diagram as an SVG, including the <svg> container.
+       Wrapped() template.HTML
+
        // Inner returns the inner markup of the SVG.
        // This allows for the <svg> container to be created manually.
        Inner() template.HTML
 
-       // SVG returns the diagram as an SVG, including the <svg> container.
-       SVG() template.HTML
-
        // Width returns the width of the SVG.
        Width() int
 
@@ -47,7 +47,7 @@ func (d goatDiagram) Inner() template.HTML {
        return template.HTML(d.d.Body)
 }
 
-func (d goatDiagram) SVG() template.HTML {
+func (d goatDiagram) Wrapped() template.HTML {
        return template.HTML(d.d.String())
 }