Home
last modified time | relevance | path

Searched refs:cursor (Results 251 – 275 of 652) sorted by last modified time

1...<<11121314151617181920>>...27

/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/
H A DBlockParserInterface.php
H A DBlockQuoteParser.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DInlineParserEngine.php
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DLinkParserHelper.php31 public static function parseLinkDestination(Cursor $cursor): ?string
33 if ($res = $cursor->match(RegexHelper::REGEX_LINK_DESTINATION_BRACES)) {
40 if ($cursor->getCurrentCharacter() === '<') {
44 $destination = self::manuallyParseLinkDestination($cursor);
54 public static function parseLinkLabel(Cursor $cursor): int
56 $match = $cursor->match('/^\[(?:[^\\\\\[\]]|\\\\.){0,1000}\]/');
70 public static function parsePartialLinkLabel(Cursor $cursor): ?string
72 return $cursor->match('/^(?:[^\\\\\[\]]+|\\\\.?)*/');
80 public static function parseLinkTitle(Cursor $cursor): ?string
82 if ($title = $cursor
28 parseLinkDestination(Cursor $cursor) global() argument
51 parseLinkLabel(Cursor $cursor) global() argument
74 parseLinkTitle(Cursor $cursor) global() argument
84 manuallyParseLinkDestination(Cursor $cursor) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Node/
H A DAttributes.php51 matchesNextLine(Cursor $cursor) global() argument
58 shouldLastLineBeBlank(Cursor $cursor, int $currentLineNumber) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Parser/
H A DAttributesBlockParser.php
H A DAttributesInlineParser.php33 $cursor = $inlineContext->getCursor();
34 $char = (string) $cursor->peek(-1);
36 $attributes = AttributesHelper::parseAttributes($cursor);
46 $cursor->advanceToNextNonSpaceOrNewline();
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Util/
H A DAttributesHelper.php32 public static function parseAttributes(Cursor $cursor): array argument
34 $state = $cursor->saveState();
35 $cursor->advanceToNextNonSpaceOrNewline();
38 if ($cursor->getCharacter() !== '{') {
39 $cursor->restoreState($state);
49 $attributeExpression = $cursor->match(self::ATTRIBUTE_LIST);
51 $cursor->restoreState($state);
/plugin/commonmark/vendor/league/commonmark/src/Extension/Autolink/
H A DInlineMentionParser.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Node/
H A DFootnoteContainer.php35 matchesNextLine(Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/
H A DFootnoteRefParser.php
H A DAnonymousFootnoteRefParser.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DPunctuationParser.php
H A DQuoteParser.php41 $cursor = $inlineContext->getCursor();
45 $charBefore = $cursor->peek(-1);
50 $cursor->advance();
52 $charAfter = $cursor->getCurrentCharacter();
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/
H A DTableOfContentsPlaceholderParser.php42 public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue
53 public function tryStart(Cursor $cursor, MarkdownParserStateInterface $parserState): ?BlockStart
61 if ($cursor->match('/^' . \preg_quote($placeholder, '/') . '$/') === null) {
65 return BlockStart::of(new TableOfContentsPlaceholderParser())->at($cursor);
26 parse(ContextInterface $context, Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMentionParser.php55 $cursor = $inlineContext->getCursor();
58 $previousChar = $cursor->peek(-1);
60 // peek() doesn't modify the cursor, so no need to restore state first
72 $cursor->advanceBy($inlineContext->getFullMatchLength());
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTable.php61 matchesNextLine(Cursor $cursor) global() argument
66 handleRemainingContents(ContextInterface $context, Cursor $cursor) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DAbstractBlock.php
H A DAbstractStringContainerBlock.php
/plugin/passpolicy/
H A Dwords.txt853 cursor
/plugin/titlesanchorlink/
H A Dstyle.css4 cursor: pointer;
/plugin/imageflow/
H A Dstyle.css69 cursor: e-resize;
80 cursor: normal;
92 cursor: normal;
/plugin/strata/
H A Dstyle.css100 cursor: pointer;
127 cursor: pointer;
133 cursor: auto;
156 cursor: move;
/plugin/minical/
H A Dstyle.css100 cursor: pointer;

1...<<11121314151617181920>>...27