Quellcode durchsuchen

Add alternative ingredient option to shortcode

The shortcode now has an optional `alternative` option that can be used
to add an alternative for the ingredient.
Bee Hudson vor 6 Monaten
Ursprung
Commit
786aedf96a
1 geänderte Dateien mit 8 neuen und 1 gelöschten Zeilen
  1. 8 1
      layouts/shortcodes/recipeIngredient.html

+ 8 - 1
layouts/shortcodes/recipeIngredient.html

@@ -1 +1,8 @@
-<li class="p-ingredient">{{ .Get "text" -}}</li>
+<li class="p-ingredient">
+    {{ .Get "text" -}}
+    {{- with .Get "alternative" -}}
+    <ul>
+        <li class="p-ingredient">{{ . | markdownify }}</li>
+    </ul>
+    {{- end -}}
+</li>