A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
345B

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