progsource / maddy

C++ Markdown to HTML header-only parser library
MIT License
203 stars 40 forks source link

Add italic parser #10

Closed patrickelectric closed 5 years ago

progsource commented 5 years ago

Thank you for your contribution.

At the moment *text* is translated to <em>text</em>, so using now also just * for italic will not work. I would prefer using *italic text* and then changing it in the other parser to _em text_ which then would result in <em>em text</em> or something similar.

Additionally the docs should get an update, when the syntax is changed.

And feel free, to add yourself to the AUTHORS file.