Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 858 Bytes

README.md

File metadata and controls

38 lines (22 loc) · 858 Bytes

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