Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # usage:
- {{ bb_parser("[u]underline[/u] this is rawp [b]This is bold, wow amazing![/b]") | raw }}
- #definition
- $bb_parser = new JBBCode\Parser();
- $bb_parser->addCodeDefinitionSet(new JBBCode\DefaultCodeDefinitionSet());
- $twig->addFunction(new \Twig\TwigFunction('bb_parser', function ($text) use ($bb_parser) {
- $bb_parser->parse( escape( $text ) );
- return $bb_parser->getAsHtml();
- } ));
- #escape function:
- # return htmlentities($string, ENT_QUOTES, 'UTF-8');
Advertisement
Add Comment
Please, Sign In to add comment