Your library perfectly fits into one of my needs and renders hashtags from a string.
But in other place I need to "hashtagify" html string and basically what I need it to be able somehow to parse not only a string child.
Example:
const text = "<p>Here is some content with a #hashtag</p>";
<ReactHashtag renderHashtag={hashtag => <Hashtag hashtag={hashtag} />}>
<div
dangerouslySetInnerHTML={{
__html: text
}}
/>
</ReactHashtag>
I am wondering is this somehow possible to be added to this package?
Your library perfectly fits into one of my needs and renders hashtags from a string.
But in other place I need to "hashtagify" html string and basically what I need it to be able somehow to parse not only a string child.
Example:
I am wondering is this somehow possible to be added to this package?