juiceo / react-native-easy-markdown

Simple & customizable React Native component to render Github-flavoured markdown using minimal native components.
https://www.npmjs.com/package/react-native-easy-markdown
65 stars 62 forks source link

Support for Images in Links #26

Open winkelsdorf opened 5 years ago

winkelsdorf commented 5 years ago

@zivester Since your fork has issues disabled, I'll try to ping you this way.

What a great component. Thank you both for your hard work! I'm circumventing the hassle with embedding local html files by using it.

Now what works out of the box:

Images ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")

Links [I'm an inline-style link](https://www.google.com)

But what about adding support for images inside of links?

[![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")](http://google.com/)

What do you think?