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

A bbcode parser for nodejs.

Results 2 node-bbcode issues
Sort by recently updated
recently updated
newest added

This module does not handle nested tags: ```javascript let code = 'wat [span][IMG]https://google.com[/IMG][/span]'; console.log(bbcode.parse(code, {})); // wat [IMG]https://google.com[/IMG] ```

Before: [url="http://example.com#hash"]url[/url] -> <a href="url">url</a> Added hash (#) symbol support in URI Added test for this