Skip to content

Commit

Permalink
Merge 377a7b2 into db89d1a
Browse files Browse the repository at this point in the history
  • Loading branch information
lcherone committed Jan 29, 2018
2 parents db89d1a + 377a7b2 commit 2108a7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TagType.php
Expand Up @@ -109,8 +109,8 @@ public function inline_tag($position, $input)
$tags = array(
'title', 'span', 'abbr', 'acronym', 'b', 'basefont', 'bdo', 'big',
'cite', 'code', 'dfn', 'em', 'font', 'i', 'kbd', 'q', 's', 'samp',
'small', 'strike', 'sub', 'sup', 'textarea', 'tt', 'u', 'var',
'del', 'pre',
'small', 'strike', 'sub', 'sup', 'textarea', 'tt', 'u', 'var',
'del', 'pre',
// 'strong',
);

Expand Down Expand Up @@ -140,7 +140,7 @@ public function get_current_tag($position, $input)
if ($input[$i] == '<') {
// @codeCoverageIgnoreStart
continue;
// @codeCoverageIgnoreEnd
// @codeCoverageIgnoreEnd
} elseif ($input[$i] == '>' || preg_match('/\s/', $input[$i])) {
return $tag;
} else {
Expand Down

0 comments on commit 2108a7b

Please sign in to comment.