Home
last modified time | relevance | path

Searched refs:environment (Results 101 – 125 of 270) sorted by last modified time

1234567891011

/plugin/commonmark/vendor/league/commonmark/src/
H A DDocParser.php
H A DEnvironment.php
H A DGithubFlavoredMarkdownConverter.php32 $environment = new Environment($config);
33 $environment->addExtension(new CommonMarkCoreExtension());
34 $environment->addExtension(new GithubFlavoredMarkdownExtension());
36 parent::__construct($environment);
41 \assert($this->environment instanceof Environment);
43 return $this->environment;
25 __construct(array $config = [], EnvironmentInterface $environment = null) global() argument
H A DInlineParserEngine.php
H A DMarkdownConverter.php27 protected EnvironmentInterface $environment;
35 public function __construct(EnvironmentInterface $environment)
37 $this->environment = $environment;
39 $this->markdownParser = new MarkdownParser($environment);
40 $this->htmlRenderer = new HtmlRenderer($environment);
45 return $this->environment;
19 protected $environment; global() variable in League\\CommonMark\\MarkdownConverter
21 __construct(EnvironmentInterface $environment) global() argument
H A DCommonMarkConverter.php34 $environment = new Environment($config);
35 $environment->addExtension(new CommonMarkCoreExtension());
37 parent::__construct($environment);
42 \assert($this->environment instanceof Environment);
44 return $this->environment;
38 __construct(array $config = [], EnvironmentInterface $environment = null) global() argument
H A DContext.php
H A DEnvironmentAwareInterface.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/ExternalLink/
H A DExternalLinkProcessor.php26 private $environment; global() variable in League\\CommonMark\\Extension\\ExternalLink\\ExternalLinkProcessor
28 __construct(EnvironmentInterface $environment) global() argument
H A DExternalLinkExtension.php43 public function register(EnvironmentBuilderInterface $environment): void
45 $environment->addEventListener(DocumentParsedEvent::class, new ExternalLinkProcessor($environment->getConfiguration()), -50);
20 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/
H A DFootnoteExtension.php54 public function register(EnvironmentBuilderInterface $environment): void
56 $environment->addBlockStartParser(new FootnoteStartParser(), 51);
57 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35);
58 $environment->addInlineParser(new FootnoteRefParser(), 51);
60 $environment->addRenderer(FootnoteContainer::class, new FootnoteContainerRenderer());
61 $environment->addRenderer(Footnote::class, new FootnoteRenderer());
62 $environment->addRenderer(FootnoteRef::class, new FootnoteRefRenderer());
63 $environment->addRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer());
65 $environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onDocumentParsed'], 40);
66 $environment
37 register(ConfigurableEnvironmentInterface $environment) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableParser.php32 private $environment; global() variable in League\\CommonMark\\Extension\\Table\\TableParser
264 setEnvironment(EnvironmentInterface $environment) global() argument
269 isANewBlock(EnvironmentInterface $environment, string $line) global() argument
H A DTableExtension.php47 public function register(EnvironmentBuilderInterface $environment): void
50 if ($environment->getConfiguration()->get('table/wrap/enabled')) {
51 $tableRenderer = new HtmlDecorator($tableRenderer, $environment->getConfiguration()->get('table/wrap/tag'), $environment->getConfiguration()->get('table/wrap/attributes'));
54 $environment
60 ->addRenderer(TableCell::class, new TableCellRenderer($environment->getConfiguration()->get('table/alignment_attributes')));
23 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/
H A DTableOfContentsExtension.php41 public function register(EnvironmentBuilderInterface $environment): void
43 $environment->addRenderer(TableOfContents::class, new TableOfContentsRenderer(new ListBlockRenderer()));
44 $environment->addEventListener(DocumentParsedEvent::class, [new TableOfContentsBuilder(), 'onDocumentParsed'], -150);
47 if ($environment->getConfiguration()->get('table_of_contents/position') === TableOfContentsBuilder::POSITION_PLACEHOLDER) {
48 $environment->addBlockStartParser(TableOfContentsPlaceholderParser::blockStartParser(), 200);
50 $environment->addRenderer(TableOfContentsPlaceholder::class, new TableOfContentsPlaceholderRenderer());
21 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/
H A DAttributesExtension.php26 public function register(EnvironmentBuilderInterface $environment): void argument
28 $environment->addBlockStartParser(new AttributesBlockStartParser());
29 $environment->addInlineParser(new AttributesInlineParser());
30 $environment->addEventListener(DocumentParsedEvent::class, [new AttributesListener(), 'processDocument']);
/plugin/commonmark/vendor/league/commonmark/src/Extension/Autolink/
H A DAutolinkExtension.php21 public function register(EnvironmentBuilderInterface $environment): void
23 $environment->addInlineParser(new EmailAutolinkParser());
24 $environment->addInlineParser(new UrlAutolinkParser());
20 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/
H A DCommonMarkCoreExtension.php
H A DExtensionInterface.php23 public function register(EnvironmentBuilderInterface $environment): void;
26 register(ConfigurableEnvironmentInterface $environment) global() argument
H A DGithubFlavoredMarkdownExtension.php25 public function register(EnvironmentBuilderInterface $environment): void
27 $environment->addExtension(new AutolinkExtension());
28 $environment->addExtension(new DisallowedRawHtmlExtension());
29 $environment->addExtension(new StrikethroughExtension());
30 $environment->addExtension(new TableExtension());
31 $environment->addExtension(new TaskListExtension());
23 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/DisallowedRawHtml/
H A DDisallowedRawHtmlExtension.php46 public function register(EnvironmentBuilderInterface $environment): void
48 $environment->addRenderer(HtmlBlock::class, new DisallowedRawHtmlRenderer(new HtmlBlockRenderer()), 50);
49 $environment->addRenderer(HtmlInline::class, new DisallowedRawHtmlRenderer(new HtmlInlineRenderer()), 50);
23 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkExtension.php44 public function register(EnvironmentBuilderInterface $environment): void
46 $environment->addEventListener(DocumentParsedEvent::class, new HeadingPermalinkProcessor(), -100);
47 $environment->addRenderer(HeadingPermalink::class, new HeadingPermalinkRenderer());
23 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMentionExtension.php46 public function register(EnvironmentBuilderInterface $environment): void
48 $mentions = $environment->getConfiguration()->get('mentions');
51 $environment->addInlineParser(new MentionParser($name, $mention['prefix'], $mention['pattern'], $mention['generator']));
53 $environment->addInlineParser(MentionParser::createWithStringTemplate($name, $mention['prefix'], $mention['pattern'], $mention['generator']));
55 $environment->addInlineParser(MentionParser::createWithCallback($name, $mention['prefix'], $mention['pattern'], $mention['generator']));
21 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DSmartPunctExtension.php42 public function register(EnvironmentBuilderInterface $environment): void
44 $environment
50 $environment->getConfiguration()->get('smartpunct/double_quote_opener'),
51 $environment->getConfiguration()->get('smartpunct/double_quote_closer')
54 $environment->getConfiguration()->get('smartpunct/single_quote_opener'),
55 $environment->getConfiguration()->get('smartpunct/single_quote_closer')
27 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/diagramsnet/lib/resources/
H A Ddia_fa.txt1165 teamsNoEditingMsg=Editor functionality is only available in Desktop environment (in MS Teams App or…

1234567891011