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

Nested tags do not work.

Open CaptainYarb opened this issue 7 years ago • 0 comments

This module does not handle nested tags:

let code = 'wat [span][IMG]https://google.com[/IMG][/span]';
console.log(bbcode.parse(code, {}));
// wat <span>[IMG]https://google.com[/IMG]</span>

CaptainYarb avatar Mar 14 '18 20:03 CaptainYarb