Tradeshift / tradeshift-ui

Tradeshift UI is a framework-agnostic JavaScript library to help Tradeshift App developers to create cohesive user experiences and to provide reusable UI components.
https://ui.tradeshift.com
Other
33 stars 44 forks source link

[Markdown] Fix wrong link-syntax #309

Closed sampi closed 7 years ago

sampi commented 7 years ago

Bug report

Tradeshift UI version affected

v8.1.6

Expected Behavior

When writing:

[link text](http://link-url)
(link text)[http://link-url]

I want to see this:

link text (link text)[http://link-url]

Actual Behavior

When writing:

[link text](http://link-url)
(link text)[http://link-url]

I see this:

[link text][http://link-url] link text

Suggested fix

Flip the [ ] with ( ) and vice-versa, so we support the standard Markdown link-syntax.

sampi commented 7 years ago

Possibly related to https://github.com/Tradeshift/tradeshift-ui/issues/62