react16-markdown-native

Render Markdown as React(16) native components

Usage no npm install needed!

<script type="module">
  import react16MarkdownNative from 'https://cdn.skypack.dev/react16-markdown-native';
</script>

README

react-markdown-native

This project provides react native components for react-markdown. The code is heavily inspired by react-markdown.

Install

npm install --save react16-markdown-native
yarn add react16-markdown-native

Basic usage

import Markdown from 'react16-markdown-native';

// Render
return (
  <View>
    <Markdown source={markdown}/>
  </View>
);

Options

See react-markdown's options.