League\CommonMark\Block\Parser\ListParser::parse PHP Method

parse() public method

public parse ( League\CommonMark\ContextInterface $context, Cursor $cursor ) : boolean
$context League\CommonMark\ContextInterface
$cursor League\CommonMark\Cursor
return boolean
    public function parse(ContextInterface $context, Cursor $cursor)
    {
        if ($cursor->isIndented() && !$context->getContainer() instanceof ListBlock) {
            return false;
        }
        $tmpCursor = clone $cursor;
        $tmpCursor->advanceToFirstNonSpace();
        $rest = $tmpCursor->getRemainder();
        $data = new ListData();
        $data->markerOffset = $cursor->getIndent();
        if ($matches = RegexHelper::matchAll('/^[*+-]/', $rest)) {
            $data->type = ListBlock::TYPE_UNORDERED;
            $data->delimiter = null;
            $data->bulletChar = $matches[0][0];
        } elseif (($matches = RegexHelper::matchAll('/^(\\d{1,9})([.)])/', $rest)) && (!$context->getContainer() instanceof Paragraph || $matches[1] === '1')) {
            $data->type = ListBlock::TYPE_ORDERED;
            $data->start = intval($matches[1]);
            $data->delimiter = $matches[2];
            $data->bulletChar = null;
        } else {
            return false;
        }
        $markerLength = strlen($matches[0]);
        // Make sure we have spaces after
        $nextChar = $tmpCursor->peek($markerLength);
        if (!($nextChar === null || $nextChar === "\t" || $nextChar === ' ')) {
            return false;
        }
        // If it interrupts paragraph, make sure first line isn't blank
        if ($context->getContainer() instanceof Paragraph && !RegexHelper::matchAt(RegexHelper::REGEX_NON_SPACE, $rest, $markerLength)) {
            return false;
        }
        // We've got a match! Advance offset and calculate padding
        $cursor->advanceToFirstNonSpace();
        // to start of marker
        $cursor->advanceBy($markerLength, true);
        // to end of marker
        $data->padding = $this->calculateListMarkerPadding($cursor, $markerLength);
        // add the list if needed
        $container = $context->getContainer();
        if (!$container || !$context->getContainer() instanceof ListBlock || !$data->equals($container->getListData())) {
            $context->addBlock(new ListBlock($data));
        }
        // add the list item
        $context->addBlock(new ListItem($data));
        return true;
    }