|
const | REGEXP_HASHTAG = '(?<=^|\s)#([\w\x{1F600}-\x{1F64F}\x{1F300}-\x{1F5FF}\x{1F680}-\x{1F6FF}\x{2600}-\x{26FF}\x{2700}-\x{27BF}]+)' |
|
◆ __construct()
◆ addBlubberMarkup()
static static addBlubberMarkup |
( |
|
$name, |
|
|
|
$start, |
|
|
|
$end, |
|
|
|
$callback, |
|
|
|
$before = null |
|
) |
| |
|
static |
Adds a new markup rule to the blubber markup set. This can also be used to replace an existing markup rule. The end regular expression is optional (i.e. may be NULL) to indicate that this rule has an empty content model. The callback is called whenever the rule matches and is passed the following arguments:
- $markup the markup parser object
- $matches match results of preg_match for $start
- $contents (parsed) contents of this markup rule
Sometimes you may want your rule to apply before another specific rule will apply. For this case the parameter $before defines a rulename of existing markup, before which your rule should apply.
- Parameters
-
string | $name | name of this rule |
string | $start | start regular expression |
string | $end | end regular expression (optional) |
callback | $callback | function generating output of this rule |
string | $before | mark before which rule this rule should be appended |
◆ getBlubberMarkup()
static getBlubberMarkup |
( |
|
$name | ) |
|
|
static |
Returns a single markup-rule if it exists.
- Returns
- array: array('start' => "...", 'end' => "...", 'callback' => "...")
◆ markupHashtags()
static markupHashtags |
( |
|
$markup, |
|
|
|
$matches |
|
) |
| |
|
staticprotected |
Stud.IP markup for hashtags
- Parameters
-
- Returns
- string
◆ removeBlubberMarkup()
static removeBlubberMarkup |
( |
|
$name | ) |
|
|
static |
Removes a markup rule from the blubber markup set.
- Parameters
-
string | $name | Name of the rule |
◆ REGEXP_HASHTAG
const REGEXP_HASHTAG = '(?<=^|\s)#([\w\x{1F600}-\x{1F64F}\x{1F300}-\x{1F5FF}\x{1F680}-\x{1F6FF}\x{2600}-\x{26FF}\x{2700}-\x{27BF}]+)' |
The documentation for this class was generated from the following file: