This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/BBCode/Tags/Underline.php
2016-10-07 21:21:05 +02:00

30 lines
507 B
PHP

<?php
/**
* Holds the underline tag.
* @package Sakura
*/
namespace Sakura\BBCode\Tags;
use Sakura\BBCode\TagBase;
/**
* Underline tag.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class Underline extends TagBase
{
/**
* The pattern to match.
* @var string
*/
public static $pattern = "/\[u\](.*?)\[\/u\]/s";
/**
* The string to replace it with.
* @var string
*/
public static $replace = "<u class='bbcode__underline'>$1</u>";
}