https://github.com/amir2mi/react-link-parser
Effortlessly parse text into links, tags, mentions, emails, etc.
https://github.com/amir2mi/react-link-parser
parser react react-parser string-parser text text-parser
Last synced: 5 months ago
JSON representation
Effortlessly parse text into links, tags, mentions, emails, etc.
- Host: GitHub
- URL: https://github.com/amir2mi/react-link-parser
- Owner: amir2mi
- Created: 2023-04-11T09:39:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-20T11:04:27.000Z (over 2 years ago)
- Last Synced: 2025-06-19T12:44:26.231Z (6 months ago)
- Topics: parser, react, react-parser, string-parser, text, text-parser
- Language: TypeScript
- Homepage: https://amir2mi.github.io/react-link-parser
- Size: 1.57 MB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Link Parser
[](https://www.npmjs.com/package/react-link-parser)
[](https://www.npmjs.com/package/react-link-parser)
[](https://github.com/danbovey/react-link-parser/blob/master/LICENSE)
A tiny React component (~1KB) that parses plain text into links, emails or renders elements that **start** or **end** with a specific character or word in the way you want.
## How it works?
Iterates over every word in the given string and matches watchers to render it customized with matched watcher render function.
## Install
Install the `react-link-parser` package with npm or yarn:
```bash
npm install react-link-parser
```
```bash
yarn add react-link-parser
```
## Get started
Let's start using the component with a couple of practical examples.
### A simple example
As a common use case, let's say you want to identify links in your text and render them with your custom render component.
This is the default behavior of the component, so all you need to do is import the package and start using it in your React application.
```jsx
import LinkParser from "react-link-parser";
export function App() {
return (
I know you will forgive me for it. Were not my other associations so chosen by Fate as to make a heart like mine
uneasy? Read more here: https://lorem.ipsum/book
);
}
```
### Parse tags, mentions and more
In cases where you want to customize how certain words or characters are rendered, you can define a list of watchers that specify which words or characters to target and which function to use for rendering. With this functionality, you can easily create a more personalized parser.
```jsx
import LinkParser from "react-link-parser";
export function App() {
// a list of watchers
const watchers = [
{
type: "startsWith",
watchFor: "#",
render: (tag) => {tag},
},
{
type: "startsWith",
watchFor: "@",
render: (mention) => {mention},
},
{
type: "endsWith",
watchFor: "*",
render: (text) => {text},
},
{
watchFor: "link",
render: (url) => (
{url}
),
},
{
watchFor: "email",
render: (url: string) => (
{url.replace("@", "[at]")}
),
},
];
return (
#Far_far_away, behind the word mountains, far from the countries @Vokalia and @Consonantia, there live the blind
texts. Separated they live in @Bookmarksgrove right at the coast of the Semantics*, a large language ocean. A
small river named Duden flows by their place and supplies it with the necessary regelialia. \n Credit: \n
https://www.blindtextgenerator.com/lorem-ipsum \n Contact Me: happy.cactus@mail.me
);
}
```
## Props
| Name | Required | Type | Default | Description |
| :--------------- | :------- | :-------- | :--------------- | :----------------------------------------------------------------------------- |
| `children` | Yes | `Node` | | Only the text will be rendered |
| `newLineWatcher` | | `String` | `\\n` | If `parseNewLine` is true, what character(s) should be considered as new line. |
| `parseNewLine` | | `Boolean` | `true` | Whether new line should be parsed as `
` |
| `watchers` | | `Array` | link watcher | An array of [watchers](#parse-tags-mentions-and-more) |
### Watcher props
| Name | Required | Type | Default | Description |
| :------------- | :------- | :---------------------------- | :--------------- | :------------------------------------------------ |
| `render` | Yes | `Function` | anchor | A function to customize watcher render |
| `type` | | `startsWith` or `endsWith` | `startsWith` | Where should it watch to find the `watchFor` clue |
| `watchFor` | Yes | `link` or `email` or `String` | `link` | What to look up in the string |