
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
react-html-replace
Advanced tools
A simple way to safely do html tag replacement with React components
A simple way to safely do html tag replacement with React components
$ npm install --save react-html-replace
import React, { Component } from 'react';
import { render } from 'react-dom';
import reactHtmlReplace from 'react-html-replace';
const Mention = props => {
const { children, id, name } = props;
return (
<span name={name} id={id} style={{ border: '1px solid #ccc' }}>
{children}
</span>
);
};
class Demo extends Component {
render() {
return (
<div>
{reactHtmlReplace(
`<italic>This is <bold> xml string</bold> with custom nexted markup,<bold> we can get inner markup & attribute through props.</bold></italic> <mention id ="123" name ="raodurgesh"> this is mention tag with id & name attributes </mention> <hashtag tag="howdymody" href ="http://google.com"></hashtag>`,
(tag, props) => {
if (tag === 'bold') {
return <b />;
}
if (tag === 'italic') {
return <i />;
}
if (tag === 'mention') {
const { name, id } = props;
return <Mention name={name} id={id}></Mention>;
}
if (tag === 'hashtag') {
const { tag, href } = props;
return <a href={href}>{`#${tag}`}</a>;
}
}
)}
</div>
);
}
}
render(<Demo />, document.querySelector('#demo'));
This is xml string with custom nexted markup, we can get inner markup & attribute through props. this is mention tag with id & name attribute this is mention tag with id & name attribute #howdymody
import reactHtmlReplace from 'react-html-replace';
reactHtmlReplace(xmlstring, callbackfunction);
xmlstring : the html string must have opening and closing tags.
callbackfunction :
i.e ,
xmlstring :<bold> This is </bold><link href = "https://github.com">demo</link>
callbackfunction : (tag, props)
:
tag : bold , link
props : href
children : In react component, we can have special React.Children as array
(as show in Mention Component)
npm install
npm start
# go to localhost:3000 if it doesnt open automatically
FAQs
A simple way to safely do html tag replacement with React components
The npm package react-html-replace receives a total of 62 weekly downloads. As such, react-html-replace popularity was classified as not popular.
We found that react-html-replace demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.