bhollis / maruku

A pure-Ruby Markdown-superset interpreter (Official Repo).
MIT License
502 stars 80 forks source link

bold-italic doesn't work #23

Closed RobertAudi closed 11 years ago

RobertAudi commented 14 years ago

The line below is not styled correctly:

*This is in italic, and this is **not bold**.*

The text end up being italic with a trailing *. This is, on the other hand, works fine:

*This is in italic, and this is <strong>bold</strong>.*
distler commented 12 years ago

I can't reproduce this issue. Works fine on my nokogiri branch.

bhollis commented 11 years ago

This is fixed in master. I've added a test to prove it. In 0.6.1, you get <p><em>This is in italic, and this is</em><em>not bold</em><em>.</em></p> instead, which is wrong, but not the same as what you reported.