A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
295B

  1. <?php
  2. namespace App\Helper;
  3. use App\BbCode\KnockoutDefinitionSet;
  4. class BBCode {
  5. private $content;
  6. public function __construct($content)
  7. {
  8. $this->content = $content;
  9. }
  10. public function render()
  11. {
  12. return nl2br(htmlentities($this->content));
  13. }
  14. }