mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 03:55:09 +08:00
13 lines
417 B
Plaintext
Executable File
13 lines
417 B
Plaintext
Executable File
<figure class="{{ include.class }}">
|
|
<img src=
|
|
{% if include.image_path contains "://" %}
|
|
"{{ include.image_path }}"
|
|
{% else %}
|
|
"{{ include.image_path | absolute_url }}"
|
|
{% endif %}
|
|
alt="{% if include.alt %}{{ include.alt }}{% endif %}">
|
|
{% if include.caption %}
|
|
<figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
|
{% endif %}
|
|
</figure>
|