introducing: minimal mistakes

This commit is contained in:
infominer33 2019-03-28 19:40:33 -04:00
parent 0c0e191d72
commit 3db2701e10
766 changed files with 41906 additions and 1080 deletions

View file

@ -0,0 +1,21 @@
---
title: "Post: Image (Linked with Caption)"
categories:
- Post Formats
tags:
- image
- Post Formats
---
{% capture fig_img %}
[![Foo](https://images.unsplash.com/photo-1541943869728-4bd4f450c8f5?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&fit=max&ixid=eyJhcHBfaWQiOjF9)](https://unsplash.com/)
{% endcapture %}
{% capture fig_caption %}
Image with a caption.
{% endcapture %}
<figure>
{{ fig_img | markdownify | remove: "<p>" | remove: "</p>" }}
<figcaption>{{ fig_caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
</figure>