Home
last modified time | relevance | path

Searched refs:inlineContext (Results 1 – 20 of 20) sorted by relevance

/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DOpenBracketParser.php
H A DNewlineParser.php
H A DEscapableParser.php
H A DBangParser.php
H A DAutolinkParser.php
H A DCloseBracketParser.php
H A DBacktickParser.php
H A DHtmlInlineParser.php
H A DEntityParser.php
H A DInlineParserInterface.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Parser/
H A DAttributesInlineParser.php31 public function parse(InlineParserContext $inlineContext): bool
33 $cursor = $inlineContext->getCursor(); argument
41 if ($char === ' ' && ($prev = $inlineContext->getContainer()->lastChild()) instanceof StringContainerInterface) {
50 $inlineContext->getContainer()->appendChild($node);
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DPunctuationParser.php
H A DQuoteParser.php38 public function parse(InlineParserContext $inlineContext): bool argument
40 $char = $inlineContext->getFullMatch();
41 $cursor = $inlineContext->getCursor();
62 $inlineContext->getContainer()->appendChild($node);
65 $inlineContext->getDelimiterStack()->push(new Delimiter($normalizedCharacter, 1, $node, $canOpen, $canClose));
/plugin/commonmark/vendor/league/commonmark/src/Extension/TaskList/
H A DTaskListItemMarkerParser.php29 public function parse(InlineParserContext $inlineContext): bool
31 $container = $inlineContext->getContainer();
38 $cursor = $inlineContext->getCursor();
49 $isChecked = $inlineContext->getFullMatch() !== '[ ]';
26 parse(InlineParserContext $inlineContext) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Autolink/
H A DInlineMentionParser.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/
H A DFootnoteRefParser.php34 public function parse(InlineParserContext $inlineContext): bool argument
36 $inlineContext->getCursor()->advanceBy($inlineContext->getFullMatchLength());
38 [$label] = $inlineContext->getSubMatches();
39 $inlineContext->getContainer()->appendChild(new FootnoteRef($this->createReference($label)));
H A DAnonymousFootnoteRefParser.php39 public function parse(InlineParserContext $inlineContext): bool
41 $inlineContext->getCursor()->advanceBy($inlineContext->getFullMatchLength());
43 [$label] = $inlineContext->getSubMatches();
45 $inlineContext->getContainer()->appendChild(new FootnoteRef($reference, $label));
44 parse(InlineParserContext $inlineContext) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMentionParser.php53 public function parse(InlineParserContext $inlineContext): bool
55 $cursor = $inlineContext->getCursor();
64 [$prefix, $identifier] = $inlineContext->getSubMatches();
72 $cursor->advanceBy($inlineContext->getFullMatchLength());
73 $inlineContext->getContainer()->appendChild($mention);
43 parse(InlineParserContext $inlineContext) global() argument
/plugin/commonmark/vendor/league/commonmark/src/
H A DInlineParserEngine.php
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md