I can't get an <img> tag to render

Viewed 6

The relevant snippit of my multimarkdown goes like:

The search page looks like:

<img src=“https://www.pter.org/prose/content/multi-engine-pp.png" alt="Use the public page" style="border: 1px solid #000; box-shadow: 5px 5px 10px #888;”>
  
Demo of...

Marked shows the <img> url as if it were code, and when I export it as HTML it comes out as code, with the < rendered as &lt;

What am I doing wrong?

I'm going to fall back to using ![](), but I switched to embedding html when it looks better and I'd like to get back to it.

Google suggested using a self-closing <img> tag (<img />, but that did not help.

2 Answers

Img tags and other HTML have no trouble rendering, if they're formatted correctly. In your code above you have two instances of a curly quote instead of a straight quote. If you replace all of the quotes with straight quotes, it renders fine for me.