vue-simple-markdown icon indicating copy to clipboard operation
vue-simple-markdown copied to clipboard

Bold text in links is not rendered correctly

Open bo-oz opened this issue 5 years ago • 1 comments

When rendering the following snippet, the output is not correct:

[**Name**](http://domain.com/)

It's my expectation that it should render:

<a href="http://domain.com"><strong>Name</strong></a>

Unfortunately it seems to ignore the ** though:

<a href="http://domain.com">**Name**</a>

Any ideas how to fix?

bo-oz avatar Jul 17 '19 19:07 bo-oz

It works for me **[Name](http://domain.com/)**

Spanri avatar May 10 '20 12:05 Spanri