8 lines
No EOL
255 B
JavaScript
8 lines
No EOL
255 B
JavaScript
var result = XBBCODE.process({
|
|
text: "[b]bolded text[/b]",
|
|
removeMisalignedTags: false,
|
|
addInLineBreaks: false
|
|
});
|
|
console.log("Errors: " + result.error);
|
|
console.dir(result.errorQueue);
|
|
console.log(result.html);// the HTML form of your BBCode
|