Skip to content

bibhuti9/react-native-html-string

Repository files navigation

react-native-html-string

Convert your HTML content as input and efficiently converts it into a string representation, providing a convenient and straightforward method for handling HTML data within your applications.

Screenshot 2024-01-29 at 2 06 10 AM

Installation

npm install react-native-html-string
OR

yarn add react-native-html-string

Usage

import { convertHTML } from 'react-native-html-string';

// ...

const html = `<h1>Hey this is react  native</h1>`;
const result = await convertHTML(html);

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


react-native-html-string