hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 1a257bb2ba6fa90f5fcba600d086b34a4fde9a2c
parent 97514f17d658fd1b9a3afe0c1786307233190af7
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Fri, 25 Feb 2022 00:09:07 +0100

Move the Goat template to the correct place

Updates #7765

Diffstat:
Ddocs/layouts/_default/_markup/render-codeblock-goat.html | 18------------------
Mtpl/tplimpl/embedded/templates/_default/_markup/render-codeblock-goat.html | 19++++++++++++++++++-
2 files changed, 18 insertions(+), 19 deletions(-)
diff --git a/docs/layouts/_default/_markup/render-codeblock-goat.html b/docs/layouts/_default/_markup/render-codeblock-goat.html
@@ -1,18 +0,0 @@
-{{ $width := .Attributes.width }}
-{{ $height := .Attributes.height }}
-{{ $class := .Attributes.class | default "" }}
-<div class="goat svg-container {{ $class }}">
-  {{ with diagrams.Goat .Code }}
-    <svg
-      xmlns="http://www.w3.org/2000/svg"
-      font-family="Menlo,Lucida Console,monospace"
-      {{ if or $width $height }}
-        {{ with $width }}width="{{ . }}"{{ end }}
-        {{ with $height }}height="{{ . }}"{{ end }}
-      {{ else }}
-        viewBox="0 0 {{ .Width }} {{ .Height }}"
-      {{ end }}>
-      {{ .Body }}
-    </svg>
-  {{ end }}
-</div>
diff --git a/tpl/tplimpl/embedded/templates/_default/_markup/render-codeblock-goat.html b/tpl/tplimpl/embedded/templates/_default/_markup/render-codeblock-goat.html
@@ -1 +1,18 @@
-adf
+{{ $width := .Attributes.width }}
+{{ $height := .Attributes.height }}
+{{ $class := .Attributes.class | default "" }}
+<div class="goat svg-container {{ $class }}">
+  {{ with diagrams.Goat .Code }}
+    <svg
+      xmlns="http://www.w3.org/2000/svg"
+      font-family="Menlo,Lucida Console,monospace"
+      {{ if or $width $height }}
+        {{ with $width }}width="{{ . }}"{{ end }}
+        {{ with $height }}height="{{ . }}"{{ end }}
+      {{ else }}
+        viewBox="0 0 {{ .Width }} {{ .Height }}"
+      {{ end }}>
+      {{ .Body }}
+    </svg>
+  {{ end }}
+</div>