gautamdhameja / medium-2-md

A CLI tool that converts exported Medium posts (html) to Jekyll/Hugo compatible markdown with front matter.
https://www.npmjs.com/package/medium-2-md
Apache License 2.0
142 stars 19 forks source link

Image Captions #2

Closed agcode closed 5 years ago

agcode commented 5 years ago

Exported Medium files have Image captions under a figcaption tag.

<figcaption class="imageCaption">Some Caption Goes Here </figcaption>

At present, the conversion renders this caption as part of the all the other text present in the post. I'm aware of the markdown limitation for ![](http://image.url). But it would be nice to have ![Some Caption Goes Here](http://image.url)

gautamdhameja commented 5 years ago

Addressed in version 0.3.0 - https://www.npmjs.com/package/medium-2-md/v/0.3.0. Closing this issue.

agcode commented 5 years ago

Thanks a lot.