const input = "testing *1 line* italics\n\ntesting **2 line bold **test\n\ntesting <u style=\"font-family: inherit;\">3 line </u>\n\nunderline "
const c = new showdown.Converter({simpleLineBreaks: true})
const output = c.makeHtml(input);
<p>testing <em>1 line</em> italics</p>\n<p>testing **2 line bold **test</p>\n<p>testing <u style="font-family: inherit;">3 line </u></p>\n<p>underline </p>
Here 2 line bold is not wrapped with strong tag
Here 2 line bold is not wrapped with strong tag