Hi All,

I am trying to add an image with clickable areas in the GitHub wiki using
inline html (pretty sure markdown doesn¹t support).

An example bit of code I have used is:

<div align="center">
  <img height="85%"
src="../blob/master/UsefulDocs/images/paint-by-numbers.png?raw=true"
usemap="#wiki-kartta"/>
  <map id="wiki-kartta" name="wiki-kartta">
    <area shape="rect" coords="0,0,82,126"  href="http://gilimanuk.com"/>
  </map>
</div> 

The following is what ends up in the html produced by gollum:

<div align="center">
  <img height="85%"
src="../blob/master/UsefulDocs/images/paint-by-numbers.png?raw=true"
usemap="#wiki-kartta"><map id="wiki-kartta" name="wiki-kartta"><area
shape="rect" coords="0,0,82,126"></map>
</div>

Two things are happening:
* the image appears but isn¹t clickable
* The href is being removed

Any ideas?

Regards,

Peter


_______________________________________________
Markdown-Discuss mailing list
[email protected]
http://six.pairlist.net/mailman/listinfo/markdown-discuss

Reply via email to