mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Substr over indexing string
This commit is contained in:
@@ -67,7 +67,10 @@ final class BlockQuote implements ContinuableBlock
|
||||
return null;
|
||||
}
|
||||
|
||||
if ($Context->line()->text()[0] === '>' && \preg_match('/^(>[ \t]?+)(.*+)/', $Context->line()->text(), $matches)) {
|
||||
if (
|
||||
\substr($Context->line()->text(), 0, 1) === '>'
|
||||
&& \preg_match('/^(>[ \t]?+)(.*+)/', $Context->line()->text(), $matches)
|
||||
) {
|
||||
$indentOffset = $Context->line()->indentOffset() + $Context->line()->indent() + \strlen($matches[1]);
|
||||
|
||||
$recoveredSpaces = 0;
|
||||
|
||||
@@ -56,7 +56,7 @@ final class FencedCode implements ContinuableBlock
|
||||
Block $Block = null,
|
||||
State $State = null
|
||||
) {
|
||||
$marker = $Context->line()->text()[0];
|
||||
$marker = \substr($Context->line()->text(), 0, 1);
|
||||
|
||||
$openerLength = \strspn($Context->line()->text(), $marker);
|
||||
|
||||
|
||||
@@ -58,9 +58,11 @@ final class Header implements Block
|
||||
|
||||
$text = \ltrim($Context->line()->text(), '#');
|
||||
|
||||
$firstChar = \substr($text, 0, 1);
|
||||
|
||||
if (
|
||||
$State->get(StrictMode::class)->isEnabled() && isset($text[0])
|
||||
&& $text[0] !== ' ' && $text[0] !== "\t"
|
||||
$State->get(StrictMode::class)->isEnabled()
|
||||
&& \trim($firstChar, " \t") !== ''
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ final class Rule implements Block
|
||||
return null;
|
||||
}
|
||||
|
||||
$marker = $Context->line()->text()[0];
|
||||
$marker = \substr($Context->line()->text(), 0, 1);
|
||||
|
||||
if (
|
||||
\substr_count($Context->line()->text(), $marker) >= 3
|
||||
|
||||
@@ -46,8 +46,17 @@ final class SetextHeader implements Block
|
||||
return null;
|
||||
}
|
||||
|
||||
if ($Context->line()->indent() < 4 && \chop(\chop($Context->line()->text(), " \t"), $Context->line()->text()[0]) === '') {
|
||||
$level = $Context->line()->text()[0] === '=' ? 1 : 2;
|
||||
$marker = \substr($Context->line()->text(), 0, 1);
|
||||
|
||||
if ($marker !== '=' && $marker !== '-') {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (
|
||||
$Context->line()->indent() < 4
|
||||
&& \chop(\chop($Context->line()->text(), " \t"), $marker) === ''
|
||||
) {
|
||||
$level = ($marker === '=' ? 1 : 2);
|
||||
|
||||
return new self(\trim($Block->text()), $level);
|
||||
}
|
||||
|
||||
@@ -89,7 +89,7 @@ final class TList implements ContinuableBlock
|
||||
State $State = null
|
||||
) {
|
||||
list($type, $pattern) = (
|
||||
$Context->line()->text()[0] <= '-'
|
||||
\substr($Context->line()->text(), 0, 1) <= '-'
|
||||
? ['ul', '[*+-]']
|
||||
: ['ol', '[0-9]{1,9}+[.\)]']
|
||||
);
|
||||
|
||||
@@ -101,7 +101,11 @@ final class Table implements ContinuableBlock
|
||||
return null;
|
||||
}
|
||||
|
||||
if (\count($this->alignments) !== 1 && $Context->line()->text()[0] !== '|' && !\strpos($Context->line()->text(), '|')) {
|
||||
if (
|
||||
\count($this->alignments) !== 1
|
||||
&& \substr($Context->line()->text(), 0, 1) !== '|'
|
||||
&& !\strpos($Context->line()->text(), '|')
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -148,7 +152,7 @@ final class Table implements ContinuableBlock
|
||||
/** @var _Alignment|null */
|
||||
$alignment = null;
|
||||
|
||||
if ($dividerCell[0] === ':') {
|
||||
if (\substr($dividerCell, 0, 1) === ':') {
|
||||
$alignment = 'left';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user