I’ve just recently begun to use markdown and have noticed that any markdown within the html ‘figure’ element simply prints out. So images merely print out the path rather than actually load.
Has anyone else encountered this?
Trying:
<figure>

<figcaption>The Noun Project</figcaption>
</figure>
But it merely prints out the code. Like markdown won’t render within Markdown.
Edit: (more info)
My apologies concerning the lack of info. Very new to Ruby and Markdown. I am using ‘Rdiscount’. I noticed today in the docs here that printing out the html might be a setting? Also it looks like markdown is printing inside of any HTML element; not only figure as I first thought.
My error:
This:
## So we went to work:
<div class="image">
<figure>

<figcaption>The u-oh.me home page</figcaption>
</figure>
</div>
Simply prints like this:
So we went to work:

The u-oh.me home page
The Markdown specification dictates that anything between block-level tags gets rendered verbatim rather than parsed as Markdown
http://daringfireball.net/projects/markdown/syntax#html