mirror of
https://github.com/holo-gfx/mangadex.git
synced 2025-02-20 17:33:05 -05:00
12 lines
369 B
PHP
12 lines
369 B
PHP
|
<?php
|
||
|
require_once "/path/to/jbbcode/Parser.php";
|
||
|
|
||
|
$parser = new JBBCode\Parser();
|
||
|
$parser->addCodeDefinitionSet(new JBBCode\DefaultCodeDefinitionSet());
|
||
|
|
||
|
$text = "[b][u]There is [i]a lot[/i] of [url=http://en.wikipedia.org/wiki/Markup_language]markup[/url] in this";
|
||
|
$text .= "[color=#333333]text[/color]![/u][/b]";
|
||
|
$parser->parse($text);
|
||
|
|
||
|
print $parser->getAsText();
|