Skip to content
 
 

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Based off of phpBB's BBCode parser. Uses the same tags as the custom BBCode.

How to Use

Adding BBCode

bbcodeParser.addBBCode(bbcode syntax, html syntax);

Examples:

bbcodeParser.addBBCode('[b]{TEXT}[/b]', '<strong>{TEXT}</strong>');
bbcodeParser.addBBCode('[url]{URL}[/url]', '<a href="{URL}">{URL}</a>');
bbcodeParser.addBBCode('[url={URL}]{TEXT}[/url]', '<a href="{URL}">{TEXT}</a>');
bbcodeParser.addBBCode('[text]{TEXT1} :: {TEXT2}[/text]', '<span>{TEXT1} :: {TEXT2}</span>');

BBCode to HTML

var html = bbcodeParser.bbcodeToHtml('[text]testing some text!123[/text]');

HTML to BBCode

var bbcode = bbcodeParser.htmlToBBCode('<span>testing some text!123 testing some text!123</span>');

About

Converts BBCode to HTML and from HTML to BBCode using javascript

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages