Vivify-Ideas / vue-simple-markdown

A Simple and Highspeed Markdown Parser for Vue
MIT License
83 stars 18 forks source link

Bold text in links is not rendered correctly #9

Open bo-oz opened 5 years ago

bo-oz commented 5 years ago

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?

Spanri commented 4 years ago

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