A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
374B

  1. <?php
  2. namespace App\BbCode\Tag;
  3. use Knockout\BbCode\Tag\SimpleTag;
  4. class Blockquote extends SimpleTag
  5. {
  6. public function getCloseHtmlTag() : string
  7. {
  8. return '</div>';
  9. }
  10. public function getOpenHtmlTag() : string
  11. {
  12. return '<div class="blockquote">';
  13. }
  14. public function getTag(): string
  15. {
  16. return 'blockquote';
  17. }
  18. }