Home
last modified time | relevance | path

Searched refs:Inline (Results 1 – 25 of 104) sorted by relevance

12345

/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
DInlineTest.php16 use Symfony\Component\Yaml\Inline; alias
24 Inline::initialize(0, 0);
32 …$this->assertSame($value, Inline::parse($yaml, $flags), sprintf('::parse() converts an inline YAML…
40 $actual = Inline::parse($yaml, $flags);
50 $actual = Inline::parse($yaml, Yaml::PARSE_CONSTANT);
72 Inline::parse('!php/const WRONG_CONSTANT', Yaml::PARSE_CONSTANT);
81 Inline::parse('!php/const PHP_INT_MAX', Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE);
89 …$this->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an …
91 … $this->assertSame($value, Inline::parse(Inline::dump($value), $parseFlags), 'check consistency');
107 $this->assertEquals('1.2', Inline::dump(1.2));
[all …]
/plugin/pgpinlinesupport/
DPlugin.txt1 ====== PGP-Inline-Support Plugin (pgpinlinesupport) ======
15 downloadurl: https://github.com/user9209/PGP-Inline-Support-DokuWiki/archive/master.zip
16 bugtracker: https://github.com/user9209/PGP-Inline-Support-DokuWiki/issues
17 sourcerepo: https://github.com/user9209/PGP-Inline-Support-DokuWiki/
20 screenshot_img : https://github.com/user9209/PGP-Inline-Support-DokuWiki/raw/master/preview.png
27 https://github.com/user9209/PGP-Inline-Support-DokuWiki/archive/master.zip
45 …1rZtnmsJQc-rHFaluZAByUcLUutAvbXbM/view|{{https://github.com/user9209/PGP-Inline-Support-DokuWiki/r…
Dplugin.info.txt5 name PGP-Inline-Support
7 url https://github.com/user9209/PGP-Inline-Support-DokuWiki/archive/master.zip
DREADME.MD1 PGP-Inline-Support for DokuWiki
8 https://github.com/user9209/PGP-Inline-Support-DokuWiki/archive/master.zip
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DCommonmarkToDokuwikiExtension.php22 use League\CommonMark\Node\Inline as CoreInlineElement;
26 use League\CommonMark\Extension\CommonMark\Node\Inline as InlineElement;
27 use League\CommonMark\Extension\CommonMark\Parser\Inline as InlineParser;
28 use Dokuwiki\Plugin\Commonmark\Extension\Renderer\Inline as InlineRenderer;
58 ->addInlineParser(new CoreParser\Inline\NewlineParser(), 200)
84 … ->addRenderer(CoreNode\Inline\Newline::class, new InlineRenderer\NewlineRenderer(), 0)
H A DFootnoteToDokuwikiExtension.php34 use Dokuwiki\Plugin\Commonmark\Extension\Renderer\Inline\FootnoteBackrefRenderer;
36 use Dokuwiki\Plugin\Commonmark\Extension\Renderer\Inline\FootnoteRefRenderer;
/plugin/aichat/vendor/erusev/parsedown/
DParsedown.php1077 $Inline = $this->{'inline'.$inlineType}($Excerpt);
1079 if ( ! isset($Inline))
1086 if (isset($Inline['position']) and $Inline['position'] > $markerPosition)
1093 if ( ! isset($Inline['position']))
1095 $Inline['position'] = $markerPosition;
1102 $Inline['element']['nonNestables'][] = $non_nestable;
1106 $unmarkedText = substr($text, 0, $Inline['position']);
1112 … $markup .= isset($Inline['markup']) ? $Inline['markup'] : $this->element($Inline['element']);
1115 $text = substr($text, $Inline['position'] + $Inline['extent']);
1240 $Inline = array(
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/
DDumper.php60 $output .= $prefix.Inline::dump($input, $flags);
62 $dumpAsMap = Inline::isHash($input);
69 …$output .= sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '',…
88 $dumpAsMap ? Inline::dump($key, $flags).':' : '-',
DParser.php162 Inline::initialize($flags, $this->getRealCurrentLineNb(), $this->filename);
191 …&& self::preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\{\[].*?) *\:(\s+(?P<value>.+…
209 …self::preg_match('#^(?P<key>(?:![^\s]++\s++)?(?:'.Inline::REGEX_QUOTED_STRING.'|(?:!?!php/const:)?…
218 $key = Inline::parseScalar($values['key']);
371 $value = Inline::parse($this->lines[0], $flags, $this->refs);
418 return Inline::parse(trim($value));
669 return Inline::evaluateBinaryScalar($data);
683 return Inline::parse($value, $flags, $this->refs);
717 Inline::$parsedLineNumber = $this->getRealCurrentLineNb();
719 $parsedValue = Inline::parse($value, $flags, $this->refs);
/plugin/combo/vendor/symfony/yaml/
H A DDumper.php60 $output .= $prefix.Inline::dump($input, $flags);
64 $dumpAsMap = Inline::isHash($input);
84 …$output .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '',…
98 …$output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value-…
133 $dumpAsMap ? Inline::dump($key, $flags).':' : '-',
H A DParser.php158 Inline::initialize($flags, $this->getRealCurrentLineNb(), $this->filename);
199 …|| self::preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\{\[].*?) *\:(\s+(?P<value>.+…
218 …self::preg_match('#^(?P<key>(?:![^\s]++\s++)?(?:'.Inline::REGEX_QUOTED_STRING.'|(?:!?!php/const:)?…
227 $key = Inline::parseScalar($values['key']);
373 return Inline::parse($this->lexInlineQuotedString(), $flags, $this->refs);
386 $parsedMapping = Inline::parse($this->lexInlineMapping(), $flags, $this->refs);
407 … $parsedSequence = Inline::parse($this->lexInlineSequence(), $flags, $this->refs);
435 $value = Inline::parse($this->lines[0], $flags, $this->refs);
491 return Inline::parse(trim($value));
748 return Inline::evaluateBinaryScalar($data);
[all …]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DTextRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
21 use League\CommonMark\Node\Inline\Text;
H A DStrongRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
21 use League\CommonMark\Extension\CommonMark\Node\Inline\Strong;
H A DNewlineRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
20 use League\CommonMark\Node\Inline\Newline;
H A DEmphasisRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
19 use League\CommonMark\Extension\CommonMark\Node\Inline\Emphasis;
H A DCodeRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
18 use League\CommonMark\Extension\CommonMark\Node\Inline\Code;
H A DLinkRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
21 use League\CommonMark\Extension\CommonMark\Node\Inline\Link;
H A DHtmlInlineRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
18 use League\CommonMark\Extension\CommonMark\Node\Inline\HtmlInline;
H A DImageRenderer.php16 namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline;
21 use League\CommonMark\Extension\CommonMark\Node\Inline\Image;
/plugin/grensladawritezor/fckeditor/editor/_source/internals/
Dfcktools_gecko.js159 oSavedStyles.Inline = sInlineStyle ;
170 if ( savedStyles.Inline )
171 element.setAttribute( 'style', savedStyles.Inline, 0 ) ; // 0 : Case Insensitive
/plugin/wysiwyg/fckeditor/editor/_source/internals/
Dfcktools_gecko.js170 oSavedStyles.Inline = sInlineStyle ;
183 if ( savedStyles.Inline )
184 element.setAttribute( 'style', savedStyles.Inline, 0 ) ; // 0 : Case Insensitive
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
DInline.php11 final class Inline class
/plugin/asciidocjs/node_modules/@asciidoctor/core/types/
Dindex.d.ts583 export namespace Inline {
1353 createAnchor(parent: AbstractBlock, text: string, opts?: Inline.Options): Inline;
1362 createInlinePass(parent: AbstractBlock, text: string, opts?: Inline.Options): Inline;
1372 … createInline(parent: AbstractBlock, context: string, text: string, opts?: Inline.Options): Inline;
2315 export class Inline extends AbstractNode {
2320 …ate(parent: AbstractBlock, context: string, text?: string, opts?: Record<string, unknown>): Inline;
/plugin/asciidocjs/node_modules/asciidoctor/types/
Dindex.d.ts583 export namespace Inline {
1353 createAnchor(parent: AbstractBlock, text: string, opts?: Inline.Options): Inline;
1362 createInlinePass(parent: AbstractBlock, text: string, opts?: Inline.Options): Inline;
1372 … createInline(parent: AbstractBlock, context: string, text: string, opts?: Inline.Options): Inline;
2315 export class Inline extends AbstractNode {
2320 …ate(parent: AbstractBlock, context: string, text?: string, opts?: Record<string, unknown>): Inline;
/plugin/pagemod/
Dplugin.info.txt5 name Inline Page Modifier

12345