mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Remove redundant checks
These don't appear to have a measurable positive impact on performance.
This commit is contained in:
@@ -62,10 +62,7 @@ final class Emphasis implements Inline
|
||||
return null;
|
||||
}
|
||||
|
||||
if (
|
||||
\substr($Excerpt->text(), 1, 1) === $marker
|
||||
&& \preg_match(self::$STRONG_REGEX[$marker], $Excerpt->text(), $matches)
|
||||
) {
|
||||
if (\preg_match(self::$STRONG_REGEX[$marker], $Excerpt->text(), $matches)) {
|
||||
$emphasis = 'strong';
|
||||
} elseif (\preg_match(self::$EM_REGEX[$marker], $Excerpt->text(), $matches)) {
|
||||
$emphasis = 'em';
|
||||
|
||||
Reference in New Issue
Block a user