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 }}|
)
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
return template.HTML(d.d.Body)
}
-func (d goatDiagram) SVG() template.HTML {
+func (d goatDiagram) Wrapped() template.HTML {
return template.HTML(d.d.String())
}