19 lines
392 B
Markdown
19 lines
392 B
Markdown
|
---
|
||
|
title: "Post Format: Image (Caption)"
|
||
|
date: 2010-08-07T06:00:19+00:00
|
||
|
categories:
|
||
|
- Post Formats
|
||
|
tags:
|
||
|
- image
|
||
|
- Post Formats
|
||
|
- shortcode
|
||
|
format: image
|
||
|
---
|
||
|
{% capture fig_img %}
|
||
|
![Foo](http://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg?w=604)
|
||
|
{% endcapture %}
|
||
|
|
||
|
<figure>
|
||
|
{{ fig_img | markdownify }}
|
||
|
<figcaption>Bell on wharf in San Francisco</figcaption>
|
||
|
</figure>
|