bbcode-to-react icon indicating copy to clipboard operation
bbcode-to-react copied to clipboard

A utility for turning raw BBCode into React elements.

Results 9 bbcode-to-react issues
Sort by recently updated
recently updated
newest added

Any update for react 18? .w.

Hi, Would you please help add a new function to parse the text to HTML and BBCode with the support of Lazy Load Component? I tried to load PDF BBCode...

Newer npm versions more strongly enforce peer dependency requirements on npm install. This means that attempting to use this package against React 17 will fail to install unless using the...

[p][b]111[/b][/p] is decoded as [p]**111**[/p]

When parsing tags this code entirely relies on a parse result: ``` let params = this.parseParams(token.slice(1, -1)); let tagName = params[0][0].toLowerCase(); ``` However parseParam will return an empty array for...

The only way I see to set the allowed/default tags is via Parser's constructor but the parser instance is created as module.exports in index.js leaving no way to change them....

When upgrading to React 16.4 we noticed some weird behavior. Tags that used to be recognized by the `bbcode-to-react` parser were suddenly being displayed as text. After doing some research,...

Hi, thanks for this great library! We are using it sometimes for mathematical equations, when characters like [ is needed. However the parser then fails, and reports bad results like...

Hi there! Is it possible to use the bbcode-to-react library with other tools such as React Redux? I'd like to be able to create a custom tag and have that...