1<?php
2/**
3 * Bootstrap Wrapper Plugin: Badge
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
7 * @copyright  (C) 2015-2020, Giuseppe Di Terlizzi
8 */
9
10class syntax_plugin_bootswrapper_badge extends syntax_plugin_bootswrapper_bootstrap
11{
12
13    public $p_type         = 'normal';
14    public $pattern_start  = '<badge>';
15    public $pattern_end    = '</badge>';
16    public $template_start = '<span class="bs-wrap bs-wrap-badge badge">';
17    public $template_end   = '</span>';
18    public $tag_name       = 'badge';
19
20}
21