DasRed / js-bbcode-parser

24 stars 7 forks source link

Parsing phpBB BBCode #1

Closed enniob closed 6 years ago

enniob commented 6 years ago

Is it possible to parse phpBB code that has the following format

[quote:5d5097a40c=\"userName\"] some text [/quote:5d5097a40c]

DasRed commented 6 years ago

Yes. That is possible. You can create your own instance with your own set of bbcode definitions or add your own bbcode to the default parser.

With the default parser you can use the add function. First parameter is the regex object and the second parameter is the replacement.

enniob commented 6 years ago

Thanks for the information. I was able to get it working.

narendra087 commented 3 years ago

Thanks for the information. I was able to get it working.

can you show me how you do it for that [quote] format? thank you