refactory-id / bootstrap-markdown

Bootstrap plugin for markdown editing
Apache License 2.0
1.99k stars 371 forks source link

Support bold + italic #76

Open jgauffin opened 10 years ago

jgauffin commented 10 years ago

The text ***hello*** should be _hello_. But the text becomes *hello*

acrobat commented 10 years ago

That's an issue with the markdown parsers (this lib is just the editor itself, for parsing of the data it uses external libs). The default parser marked-js lacks support for this I see, but you can create an issue there to implement this.

Otherwise you could use the marked parser, this one supports the bold + italic behavior

lodev09 commented 10 years ago

I would suggest you use marked and enable gfm (github flavored markdown)