Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/charlesmangwa/react-native-simple-markdown

๐Ÿ“œ React Native Markdown component (iOS & Android).
https://github.com/charlesmangwa/react-native-simple-markdown

android ios library markdown react react-native

Last synced: 8 days ago
JSON representation

๐Ÿ“œ React Native Markdown component (iOS & Android).

Awesome Lists containing this project

README

        

# react-native-simple-markdown
[![CircleCI](https://circleci.com/gh/CharlesMangwa/react-native-simple-markdown.svg?style=shield&circle-token=4a6119afe938ed7305713fece562bb33d6bc22d8)](https://circleci.com/gh/CharlesMangwa/react-native-simple-markdown)
[![npm downloads](https://img.shields.io/npm/dm/react-native-simple-markdown.svg?maxAge=2592000)](https://www.npmjs.com/package/react-native-simple-markdown)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![npm version](https://img.shields.io/npm/v/react-native-simple-markdown.svg)](https://www.npmjs.com/package/react-native-simple-markdown)

A component for rendering Markdown in React Native with native components, working with both iOS & Android. Pull requests are welcome! ๐Ÿ˜ƒ ๐ŸŽ‰

## Getting started

`yarn add react-native-simple-markdown`

## Future

This library is currently being (kinda) completely rewritten. If you've been using this lib for a short/long time or are interesting in shaping it for the future: [just chime in and share your thoughts with us](https://github.com/CharlesMangwa/react-native-simple-markdown/issues/75); or give a look at the [styles section](https://github.com/CharlesMangwa/react-native-simple-markdown/tree/next#styles-1), some help is also need there!

## Usage

All you need to do is import the `react-native-simple-markdown` and then use the
`` component.

```js
import React from 'react'
import Markdown from 'react-native-simple-markdown'

const MyAwesomeApp = () => {
return (

#Markdown in react-native is so cool! {'\n\n'}

You can **emphasize** what you want, or just _suggest it_ ๐Ÿ˜โ€ฆ{'\n'}

You can even [**link your website**](https://twitter.com/Charles_Mangwa) or if you prefer: [email somebody](mailto:[email protected]){'\n'}

Spice it up with some GIFs ๐Ÿ’ƒ:

![Some GIF](https://media.giphy.com/media/dkGhBWE3SyzXW/giphy.gif){'\n'}

And even add a cool video ๐Ÿ˜Ž!{'\n'}

[![A cool video from YT](https://img.youtube.com/vi/dQw4w9WgXcQ/0.jpg)](http://www.youtube.com/watch?v=dQw4w9WgXcQ)

[![Another one from Vimeo](https://i.vimeocdn.com/video/399486266_640.jpg)](https://vimeo.com/57580368)

)
}

const markdownStyles = {
heading1: {
fontSize: 24,
color: 'purple',
},
link: {
color: 'pink',
},
mailTo: {
color: 'orange',
},
text: {
color: '#555555',
},
}
```

## Properties
### `styles`

`` will apply its style by default. However you can pass a `styles` prop to customize it has you wish.

Example:

```js

#Hello ๐Ÿ‘‹

```

### `rules`

Here again, `` will apply its rules by default. However you can pass a `rules` prop to add your own and then customize how the Markdown elements will be displayed!

Example:

```js
(

),
},
}}
>
![Alt text](/path/to/img.jpg)

```

RNSM also allows you to remove easily unwanted styling options without having to pass in rule objects that have their react key implemented/dummied to ignore those styling options.

Example:

```js

{ description }

```

`whitelist` will only apply `link` and `url` default styles, while `blacklist` will do the opposite. You don't need to pass in a rules prop that contained a key for all the styles you don't want and reimplement their styling output anymore.

### errorHandler

If you happened to have an error with your Markdown during the rendering, you can pass a `errorHandler` with a function that will let you see what's going on:

```jsx
console.log(errors, children)}
>
...

```

## Styles

Given that the way React Native renders element has evolved in the latest versions (0.48+), we'll have to check manually that every single rule works as expected by:
- rendering properly on both iOS & Android
- being able to be styled on both platforms
- not breaking/overriding others rules when its own is applied

When those 3 criteria are fulfilled, we can validate the **Rendering** column. Feel free to check any of these and send a PR to validate it [on Snack](https://snack.expo.io/By2dzl04G)!

| Property | Type | Rendering |ย Features |
| ------ | ------ | ------ | ------ |
| `blockQuote` | `` | โŒ | Also `blockQuoteBar` (``) and `blockQuoteText` (``) |
| `br` | `` | โŒ | - |
| `del` | `` | โŒ | - |
| `em` | `` | โŒ | - |
| `hr` | `` | โŒ | - |
| `heading` | `` | โŒ |ย Also `heading1` through `heading6` |
| `image` | `` | โŒ |ย ou can use `resizeMode` in `` styles prop to set a `resizeMode` |
| `inlineCode` | `` | โŒ |ย - |
| `link` | `` | โŒ |ย - |
| `list` | `` | โŒ |ย Also `listItem` (``), `listItemBullet` (``), `listItemBulletType` (`Unicode character`), `listItemNumber` (``) and `listItemText` (``) |
| `mailTo` | `` | โŒ |ย - |
| `paragraph` | `` | โŒ |ย - |
| `plainText` | `` | โŒ | Used for styling text without any associated styles |
| `strong` | `` | โŒ |ย - |
| `table` | `` | โŒ |ย - |
| `tableHeader` | `` | โŒ |ย - |
| `tableHeaderCell` | `` | โŒ |ย - |
| `tableRow` | `` | โŒ |ย - |
| `tableRowCell` | `` | โŒ |ย - |
| `tableRowLast` | `` | โŒ |ย Inherits from `tableRow` |
| `text` | `` | โŒ |ย - |
| `u` | `` | โŒ |ย - |
| `url` | `` | โŒ |ย - |
| `video` | `` | โŒ |ย Supports YouTube & Vimeo |
| `view` | `` | โŒ |ย This is the `View` container where the Markdown is rendered |

## Credits

This project was forked from [`react-native-markdown`](https://github.com/lwansbrough/react-native-markdown) by [@lwansbrough](https://github.com/lwansbrough) ๐Ÿ‘