summaryrefslogtreecommitdiffstats
path: root/tpl
diff options
context:
space:
mode:
authorKaushal Modi <kaushal.modi@gmail.com>2017-10-27 11:37:54 -0400
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-10-29 20:46:57 +0100
commit488631fe0abc3667355345c7eb98ba7a2204deb5 (patch)
tree13dc897505ae31a7bddd779e31d626491c813001 /tpl
parentfdd62eb4c3dab9229ae4b7aeae45832961f6e168 (diff)
Add support for height argument to figure shortcode
Fixes #4014
Diffstat (limited to 'tpl')
-rw-r--r--tpl/tplimpl/template_embedded.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/tplimpl/template_embedded.go b/tpl/tplimpl/template_embedded.go
index dd3254560..2252d65cf 100644
--- a/tpl/tplimpl/template_embedded.go
+++ b/tpl/tplimpl/template_embedded.go
@@ -21,7 +21,7 @@ func (t *templateHandler) embedShortcodes() {
t.addInternalShortcode("figure.html", `<!-- image -->
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
{{ with .Get "link"}}<a href="{{.}}">{{ end }}
- <img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}" {{ end }}{{ with .Get "width" }}width="{{.}}" {{ end }}/>
+ <img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}" {{ end }}{{ with .Get "width" }}width="{{.}}" {{ end }}{{ with .Get "height" }}height="{{.}}" {{ end }}/>
{{ if .Get "link"}}</a>{{ end }}
{{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
<figcaption>{{ if isset .Params "title" }}