Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 893 Bytes

File metadata and controls

49 lines (34 loc) · 893 Bytes

React Native Markdown Renderer

Features

This library renders Markdown in React Native using native components.

Supported elements

  • Bold and italic text
  • Strikethrough
  • Links
  • Inline `code`

Lists

  1. First ordered item
  2. Second ordered item
  3. Third ordered item
  • Unordered item A
  • Unordered item B
  • Unordered item C

Code block

``` const greeting = "Hello, Markdown!"; console.log(greeting); ```

Blockquote

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.

Table

Feature Status
Headings Done
Bold / Italic Done
Links Done
Images Done
Tables Done
Code blocks Done

Rendered with react-native-markdown-renderer v4