A fork of potaka/bbcode to handle future maintenance
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 lines
338B

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