A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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