A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
341B

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