bootstrap-markdown icon indicating copy to clipboard operation
bootstrap-markdown copied to clipboard

Support bold + italic

Open jgauffin opened this issue 11 years ago • 2 comments

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

jgauffin avatar Jun 28 '14 07:06 jgauffin

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

acrobat avatar Jun 28 '14 17:06 acrobat

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

lodev09 avatar Jul 30 '14 01:07 lodev09