-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where is the js BBCode tag parser #6
Comments
The BBCodes parser is in src/Plugins/BBCodes/Parser.js. It's a port of Parser.php in the same directory. Tag rules are applied by the main parser in |
Although I could get a lot of content from there... I couldn't get how do you deal with BBCode that follows more interesting approaches such as 1 param into 2 params or 2 params into 1 param like you describe in the CodeMonkey documentation. Where is the js code to do that? |
They're attribute preprocessors and they're handled in |
I just want to get the Regex processing you use to get it up and working ^^. That should do it. |
All the processing is done in |
Ah! Found something here: I'm after the adaptations required to make a WYSIWYG editor on a client which uses TextFormatter on the server, for phpBB. |
Can you please take me to where the BBCode tag parser for the javascript part is?
I'm interested in the parts that parse each specific tag according to its settings and restrictions, not the part that deals with the actual HTML output building, just where it processes the restrictions and decides the actual transformations to use.
The text was updated successfully, but these errors were encountered: