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.

25 line
336B

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