I am new in using pandoc and I am trying to convert a markdown document to HTML. Inside it I have a bunch of html tags to sort out 2 images into two side by side columns. However when I convert it from Markdown to HTML the <img> tags changes to <pre><code> tags. Is this normal? Am I missing anything out? Below is what I meant.

From in Markdown

<div class="row">
  <div class="column">
    <img src="img1.jpg" style="width:50%"></img>
  </div>
  <div class="column">
    <img src="img2.jpg" style="width:50%"></img>
  </div>
</div>

To in HTML

<div class="row">
<div class="column">
<pre><code>&lt;img src=&quot;img1.jpg&quot; style=&quot;width:50%&quot;&gt;&lt;/img&gt;</code></pre>
</div>
<div class="column">
<pre><code>&lt;img src=&quot;img2.jpg&quot; style=&quot;width:50%&quot;&gt;&lt;/img&gt;</code></pre>
</div>
</div>

I am using pandoc 1.19.2.4 compiled with pandoc-types 1.17.0.5, texmath 0.9.4.4, skylighting 0.3.3.1
Thanks !

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/deb28ccc-a17a-4b89-873d-34abb0551a44n%40googlegroups.com.