tpl/diagrams: Rename Body to Inner
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 12:36:58 +0000 (13:36 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 16:59:36 +0000 (17:59 +0100)
This relates to #9577 – there's no concept a body element in SVG, so we might as well use an exsisting "Hugo term".

tpl/diagrams/diagrams.go
tpl/tplimpl/embedded/templates/_default/_markup/render-codeblock-goat.html

index 1bdbc2a02fde58dbd67e6fd0d75265236cae237e..b0ddf5a42f1726270dee6ba7f41dfed9b4268474 100644 (file)
@@ -25,9 +25,17 @@ import (
 )
 
 type SVGDiagram interface {
-       Body() 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
+
+       // Height returns the height of the SVG.
        Height() int
 }
 
@@ -35,7 +43,7 @@ type goatDiagram struct {
        d goat.SVG
 }
 
-func (d goatDiagram) Body() template.HTML {
+func (d goatDiagram) Inner() template.HTML {
        return template.HTML(d.d.Body)
 }
 
index f23fa046e0c1632f814d87c305c0d6856fb8d846..35ec0b309d3011f85e92d0f55dc9da1321514a49 100644 (file)
@@ -12,7 +12,7 @@
       {{ else }}
         viewBox="0 0 {{ .Width }} {{ .Height }}"
       {{ end }}>
-      {{ .Body }}
+      {{ .Inner }}
     </svg>
   {{ end }}
 </div>