You are here

function XBBCodeTagMatch::breakTag in Extensible BBCode 8.2

File

src/XBBCodeTagMatch.php, line 27

Class

XBBCodeTagMatch

Namespace

Drupal\xbbcode

Code

function breakTag(XBBCodeTagMatch $tag) {
  $this->content = array_merge($this->content, [
    $tag->element,
  ], $tag->content);
  $this->offset = $tag->offset;
}