Home
last modified time | relevance | path

Searched refs:DelimiterProcessorInterface (Results 1 – 11 of 11) sorted by last modified time

/plugin/commonmark/vendor/league/commonmark/src/Extension/Strikethrough/
H A DStrikethroughDelimiterProcessor.php17 use League\CommonMark\Delimiter\Processor\DelimiterProcessorInterface;
20 final class StrikethroughDelimiterProcessor implements DelimiterProcessorInterface
15 use League\CommonMark\Delimiter\Processor\DelimiterProcessorInterface; global() alias
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/Processor/
H A DDelimiterProcessorCollection.php27 * @var array<string,DelimiterProcessorInterface>|DelimiterProcessorInterface[]
33 public function add(DelimiterProcessorInterface $processor): void
51 public function getDelimiterProcessor(string $char): ?DelimiterProcessorInterface
64 private function addDelimiterProcessorForChar(string $delimiterChar, DelimiterProcessorInterface $processor): void
73 private function addStaggeredDelimiterProcessorForChar(string $opening, DelimiterProcessorInterface $old, DelimiterProcessorInterface $new): void
H A DDelimiterProcessorCollectionInterface.php29 * @param DelimiterProcessorInterface $processor The delim processor to add
33 public function add(DelimiterProcessorInterface $processor): void;
38 public function getDelimiterProcessor(string $char): ?DelimiterProcessorInterface;
H A DEmphasisDelimiterProcessor.php
H A DStaggeredDelimiterProcessor.php24 * An implementation of DelimiterProcessorInterface that dispatches all calls to two or more other DelimiterProcessors
31 final class StaggeredDelimiterProcessor implements DelimiterProcessorInterface
40 * @var array<int, DelimiterProcessorInterface>|DelimiterProcessorInterface[]
46 public function __construct(string $char, DelimiterProcessorInterface $processor)
72 public function add(DelimiterProcessorInterface $processor): void
96 private function findProcessor(int $len): DelimiterProcessorInterface
107 \assert($first instanceof DelimiterProcessorInterface);
H A DDelimiterProcessorInterface.php28 interface DelimiterProcessorInterface
26 interface DelimiterProcessorInterface global() interface
/plugin/commonmark/vendor/league/commonmark/src/
H A DEnvironment.php
H A DInlineParserEngine.php
H A DConfigurableEnvironmentInterface.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DQuoteProcessor.php20 use League\CommonMark\Delimiter\Processor\DelimiterProcessorInterface;
23 final class QuoteProcessor implements DelimiterProcessorInterface
18 use League\CommonMark\Delimiter\Processor\DelimiterProcessorInterface; global() alias