mity / md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
MIT License
779 stars 146 forks source link

Entities inside image contents are not rendered. #4

Closed mity closed 7 years ago

mity commented 7 years ago
![alt text with *entity* ©](img.png 'title')

renders into

<p><img src="img.png" alt="alt text with entity " title="title"></p>

but it should render into

<p><img src="img.png" alt="alt text with entity ©" title="title"></p>