mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 20:21:34 +01:00
10 lines
457 B
HTML
10 lines
457 B
HTML
{% set img = body | trim_start_matches(pat=" %}<!---->
|
|
{% set alt = img | first() %}<!---->
|
|
{% set src = img | last() %}<!---->
|
|
{% set ignore_names = ["inline svg", "inline-svg", "inline_svg"] %}
|
|
<figure class="inline-svg">
|
|
{{ load_data(path="@" ~ page.path ~ src) | safe}}<!---->
|
|
{% if alt and not ignore_names is containing(alt | lower) %}
|
|
<figcaption>{{ alt }}</figcaption>
|
|
{% endif %}
|
|
</figure>
|