Guest User

Untitled

a guest
Aug 9th, 2021
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # usage:
  2. {{ bb_parser("[u]underline[/u] this is rawp [b]This is bold, wow amazing![/b]") | raw }}
  3.  
  4.  
  5. #definition
  6.  
  7. $bb_parser = new JBBCode\Parser();
  8. $bb_parser->addCodeDefinitionSet(new JBBCode\DefaultCodeDefinitionSet());
  9. $twig->addFunction(new \Twig\TwigFunction('bb_parser', function ($text) use ($bb_parser) {
  10. $bb_parser->parse( escape( $text ) );
  11. return $bb_parser->getAsHtml();
  12. } ));
  13. #escape function:
  14. # return htmlentities($string, ENT_QUOTES, 'UTF-8');
Advertisement
Add Comment
Please, Sign In to add comment