Selaa lähdekoodia

figure shortcode: Fix caption style

See #328
George Cushen 7 vuotta sitten
vanhempi
commit
09674dd538
2 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 1 1
      layouts/partials/css/academic.css
  2. 3 3
      layouts/shortcodes/figure.html

+ 1 - 1
layouts/partials/css/academic.css

@@ -159,7 +159,7 @@ figcaption.numbered {
 }
 
 figcaption h4 {
-  display: inline-block;
+  display: inline;
   font-size: 1rem;
   font-weight: 400;
   margin: 0;

+ 3 - 3
layouts/shortcodes/figure.html

@@ -1,13 +1,13 @@
 <figure{{ with .Get "class" }} class="{{.}}"{{ end }}>
 {{ if .Get "link"}}<a href="{{ .Get "link" }}"{{ with .Get "target" }} target="{{ . }}"{{ end }}{{ with .Get "rel" }} rel="{{ . }}"{{ end }}>{{ 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 }}/>
+<img src="{{ .Get "src" | relURL }}" {{ 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")}}
 {{ $figure := split (i18n "figure" | default "Figure %d:") "%d" }}
 <figcaption data-pre="{{ index $figure 0 }}" data-post="{{ index $figure 1 }}" {{ if eq (.Get "numbered") "true" }}class="numbered"{{ end }}>{{ if isset .Params "title" }}
-  <h4>{{ .Get "title" }}</h4>{{ end }}
+  <h4>{{ .Get "title" | markdownify | emojify }}</h4>{{ end }}
   {{ if or (.Get "caption") (.Get "attr")}}<p>
-    {{ .Get "caption" }}
+    {{ .Get "caption" | markdownify | emojify }}
     {{ with .Get "attrlink"}}<a href="{{.}}"> {{ end }}
     {{ .Get "attr" }}
     {{ if .Get "attrlink"}}</a> {{ end }}