mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 05:58:21 -05:00
13 lines
381 B
PHP
13 lines
381 B
PHP
<?php
|
|
require_once "/path/to/jbbcode/Parser.php";
|
|
|
|
$parser = new JBBCode\Parser();
|
|
$parser->addCodeDefinitionSet(new JBBCode\DefaultCodeDefinitionSet());
|
|
|
|
$text = "The default codes include: [b]bold[/b], [i]italics[/i], [u]underlining[/u], ";
|
|
$text .= "[url=http://jbbcode.com]links[/url], [color=red]color![/color] and more.";
|
|
|
|
$parser->parse($text);
|
|
|
|
print $parser->getAsHtml();
|