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/Header.php
2016-10-07 21:21:05 +02:00

30 lines
507 B
PHP

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