Home
last modified time | relevance | path

Searched refs:cursor (Results 226 – 250 of 652) sorted by last modified time

12345678910>>...27

/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/
H A DFencedCodeParser.php
H A DHtmlBlockParser.php
H A DIndentedCodeParser.php
H A DLazyParagraphParser.php
H A DListParser.php
H A DSetExtHeadingParser.php
H A DThematicBreakParser.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DInlineParserContext.php
H A DDocParser.php
/plugin/commonmark/vendor/league/commonmark/src/Reference/
H A DReferenceParser.php97 $cursor = new Cursor($line);
98 while (! $cursor->isAtEnd()) {
106 $result = $this->parseStartDefinition($cursor);
109 $result = $this->parseLabel($cursor);
112 $result = $this->parseDestination($cursor);
115 $result = $this->parseStartTitle($cursor);
118 $result = $this->parseTitle($cursor);
133 private function parseStartDefinition(Cursor $cursor): bool
135 $cursor->advanceToNextNonSpaceOrTab();
136 if ($cursor
39 parse(Cursor $cursor) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Node/
H A DFootnote.php51 matchesNextLine(Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/
H A DFootnoteParser.php43 public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue
45 if ($cursor->isBlank()) {
46 return BlockContinue::at($cursor);
49 if ($cursor->isIndented()) {
50 $this->indentation ??= $cursor->getIndent();
51 $cursor->advanceBy($this->indentation, true);
53 return BlockContinue::at($cursor);
26 parse(ContextInterface $context, Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableParser.php83 public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue
85 if (\strpos($cursor->getLine(), '|') === false) {
89 return BlockContinue::at($cursor);
159 $cursor = new Cursor(\trim($line));
161 if ($cursor->getCurrentCharacter() === '|') {
162 $cursor->advanceBy(1);
168 while (! $cursor->isAtEnd()) {
169 switch ($c = $cursor->getCurrentCharacter()) {
171 if ($cursor->peek() === '|') {
176 $cursor
34 parse(ContextInterface $context, Cursor $cursor) global() argument
145 split(Cursor $cursor) global() argument
190 parseColumns(Cursor $cursor) global() argument
[all...]
H A DTableRow.php34 matchesNextLine(Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/Node/
H A DTableOfContentsPlaceholder.php29 matchesNextLine(Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DFencedCode.php
H A DHeading.php
H A DHtmlBlock.php
H A DIndentedCode.php
H A DListItem.php
H A DParagraph.php
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DAutolinkParser.php
H A DBacktickParser.php
H A DBangParser.php
H A DEscapableParser.php

12345678910>>...27