bootstrap-markdown
bootstrap-markdown copied to clipboard
Support bold + italic
The text ***hello*** should be _hello_. But the text becomes *hello*
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
I would suggest you use marked and enable gfm (github flavored markdown)