/plugin/abc2/abc-libraries/abcjs/ |
H A D | abcjs-midi.css | 3 .abcjs-inline-midi { 14 .abcjs-inline-midi .abcjs-btn { 17 display: inline-block; 33 .fa5 .abcjs-inline-midi .abcjs-btn { 37 .abcjs-inline-midi .abcjs-btn:hover { 106 display: inline-block; 113 .abcjs-inline-midi .abcjs-midi-clock, .abcjs-inline-midi .abcjs-midi-post { 116 display: inline-block; 123 display: inline-block; 130 display: inline-block; [all …]
|
/plugin/commonmark/vendor/league/commonmark/src/Inline/Renderer/ |
H A D | LinkRenderer.php | 33 * @param Link $inline 38 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 40 if (!($inline instanceof Link)) { 41 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 44 $attrs = $inline->getData('attributes', []); 47 if (!($forbidUnsafeLinks && RegexHelper::isLinkPotentiallyUnsafe($inline->getUrl()))) { 48 $attrs['href'] = $inline->getUrl(); 51 if (isset($inline->data['title'])) { 52 $attrs['title'] = $inline->data['title']; 59 return new HtmlElement('a', $attrs, $htmlRenderer->renderInlines($inline->children()));
|
H A D | ImageRenderer.php | 33 * @param Image $inline 38 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 40 if (!($inline instanceof Image)) { 41 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 44 $attrs = $inline->getData('attributes', []); 47 if ($forbidUnsafeLinks && RegexHelper::isLinkPotentiallyUnsafe($inline->getUrl())) { 50 $attrs['src'] = $inline->getUrl(); 53 $alt = $htmlRenderer->renderInlines($inline->children()); 57 if (isset($inline->data['title'])) { 58 $attrs['title'] = $inline->data['title'];
|
H A D | StrongRenderer.php | 25 * @param Strong $inline 30 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 32 if (!($inline instanceof Strong)) { 33 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 36 $attrs = $inline->getData('attributes', []); 38 return new HtmlElement('strong', $attrs, $htmlRenderer->renderInlines($inline->children()));
|
H A D | EmphasisRenderer.php | 25 * @param Emphasis $inline 30 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 32 if (!($inline instanceof Emphasis)) { 33 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 36 $attrs = $inline->getData('attributes', []); 38 return new HtmlElement('em', $attrs, $htmlRenderer->renderInlines($inline->children()));
|
H A D | CodeRenderer.php | 26 * @param Code $inline 31 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 33 if (!($inline instanceof Code)) { 34 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 37 $attrs = $inline->getData('attributes', []); 39 return new HtmlElement('code', $attrs, Xml::escape($inline->getContent()));
|
H A D | HtmlInlineRenderer.php | 32 * @param HtmlInline $inline 37 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 39 if (!($inline instanceof HtmlInline)) { 40 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 48 return \htmlspecialchars($inline->getContent(), \ENT_NOQUOTES); 51 return $inline->getContent();
|
H A D | TextRenderer.php | 25 * @param Text $inline 30 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 32 if (!($inline instanceof Text)) { 33 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 36 return Xml::escape($inline->getContent());
|
H A D | NewlineRenderer.php | 25 * @param Newline $inline 30 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 32 if (!($inline instanceof Newline)) { 33 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 36 if ($inline->getType() === Newline::HARDBREAK) {
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/ |
H A D | ImageRenderer.php | 34 * @param Image $inline 39 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 41 if (!($inline instanceof Image)) { 42 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 45 $attrs = $inline->getData('attributes', []); 48 if ($forbidUnsafeLinks && RegexHelper::isLinkPotentiallyUnsafe($inline->getUrl())) { 51 $attrs['src'] = $inline->getUrl(); 54 $alt = $DWRenderer->renderInlines($inline->children()); 58 if (isset($inline->data['title'])) { 59 $attrs['title'] = $inline->data['title'];
|
H A D | LinkRenderer.php | 34 * @param Link $inline 39 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 41 if (!($inline instanceof Link)) { 42 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 45 $attrs = $inline->getData('attributes', []); 48 if (!($forbidUnsafeLinks && RegexHelper::isLinkPotentiallyUnsafe($inline->getUrl()))) { 49 $attrs['href'] = $inline->getUrl(); 52 … $result = '[[' . $attrs['href'] . '|' . $DWRenderer->renderInlines($inline->children()) . ']]';
|
H A D | HtmlInlineRenderer.php | 34 * @param HtmlInline $inline 39 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 41 if (!($inline instanceof HtmlInline)) { 42 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 50 return \htmlspecialchars($inline->getContent(), \ENT_NOQUOTES); 53 return $inline->getContent();
|
H A D | StrongRenderer.php | 26 * @param Strong $inline 31 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 33 if (!($inline instanceof Strong)) { 34 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 37 return '**' . $DWRenderer->renderInlines($inline->children()) . '**';
|
H A D | CodeRenderer.php | 27 * @param Code $inline 32 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 34 if (!($inline instanceof Code)) { 35 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 41 return "''%%" . $inline->getContent() . "%%''";
|
H A D | TextRenderer.php | 27 * @param Text $inline 32 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 34 if (!($inline instanceof Text)) { 35 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 39 return $inline->getContent();
|
H A D | NewlineRenderer.php | 26 * @param Newline $inline 31 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 33 if (!($inline instanceof Newline)) { 34 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 37 if ($inline->getType() === Newline::HARDBREAK) {
|
H A D | FootnoteRefRenderer.php | 33 public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) argument 36 if (!($inline instanceof FootnoteRef)) { 37 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 40 $attrs = $inline->getData('attributes', []); 43 $document = $inline->parent()->parent(); 48 $title = $inline->getReference()->getLabel();
|
/plugin/abc2/ |
H A D | style.css | 24 .abcjs-inline-midi { 36 .abcjs-inline-midi .abcjs-btn { 39 display: inline-block; 55 .abcjs-inline-midi .abcjs-btn:hover { 124 display: inline-block; 131 .abcjs-inline-midi .abcjs-midi-clock, .abcjs-inline-midi .abcjs-midi-post { 134 display: inline-block; 140 .abcjs-inline-midi .abcjs-midi-pre { 141 display: inline-block; 148 display: inline-block; [all …]
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/ |
H A D | QuoteRenderer.php | 25 * @param Quote $inline 30 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 32 if (!$inline instanceof Quote) { 33 …ption(sprintf('Expected an instance of "%s", got "%s" instead', Quote::class, get_class($inline))); 37 if ($inline->getContent() === Quote::SINGLE_QUOTE) { 40 } elseif ($inline->getContent() === Quote::DOUBLE_QUOTE) { 45 return $inline->getContent();
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Renderer/ |
H A D | FootnoteRefRenderer.php | 30 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 32 if (!($inline instanceof FootnoteRef)) { 33 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 36 $attrs = $inline->getData('attributes', []); 43 'id' => $idPrefix . \mb_strtolower($inline->getReference()->getLabel()), 49 'href' => \mb_strtolower($inline->getReference()->getDestination()), 52 $inline->getReference()->getTitle()
|
/plugin/progrecss/ |
H A D | print.css | 14 display: inline-block; 18 display: inline-block; 24 display: inline-block; 31 display: inline-block; 40 display: inline-block; 44 display: inline-block; 53 display: inline-block; 67 display: inline-block; 72 display: inline-block; 81 display: inline-block;
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Strikethrough/ |
H A D | StrikethroughRenderer.php | 21 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 23 if (!($inline instanceof Strikethrough)) { 24 throw new \InvalidArgumentException('Incompatible inline type: ' . get_class($inline)); 27 …return new HtmlElement('del', $inline->getData('attributes', []), $htmlRenderer->renderInlines($in…
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/TaskList/ |
H A D | TaskListItemMarkerRenderer.php | 22 * @param TaskListItemMarker $inline 27 public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) argument 29 if (!($inline instanceof TaskListItemMarker)) { 30 throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); 35 if ($inline->isChecked()) {
|
/plugin/commonmark/vendor/league/commonmark/src/ |
H A D | HtmlRenderer.php | 52 * @param AbstractInline $inline 58 public function renderInline(AbstractInline $inline): string argument 60 $renderers = $this->environment->getInlineRenderersForClass(\get_class($inline)); 64 if (($result = $renderer->render($inline, $this)) !== null) { 69 … \RuntimeException('Unable to find corresponding renderer for inline type ' . \get_class($inline)); 80 foreach ($inlines as $inline) { 81 $result[] = $this->renderInline($inline);
|
/plugin/combo/ComboStrap/ |
H A D | StyleUtility.php | 37 $inline = ""; 39 if ($inline!="") { 40 $inline .= ";$property:$value"; 42 $inline = "$property:$value"; 45 return $inline;
|