A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }