Home
last modified time | relevance | path

Searched refs:attrs (Results 76 – 100 of 188) sorted by last modified time

12345678

/plugin/commonmark/vendor/league/commonmark/src/Inline/Renderer/
H A DLinkRenderer.php
H A DStrongRenderer.php
H A DEmphasisRenderer.php
H A DImageRenderer.php
/plugin/commonmark/vendor/league/commonmark/src/Block/Renderer/
H A DListItemRenderer.php
H A DThematicBreakRenderer.php
H A DBlockQuoteRenderer.php
H A DFencedCodeRenderer.php
H A DHeadingRenderer.php
H A DIndentedCodeRenderer.php
H A DListBlockRenderer.php
H A DParagraphRenderer.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableSectionRenderer.php41 $attrs = $node->data->get('attributes');
47 return new HtmlElement($tag, $attrs, $separator . $childRenderer->renderNodes($node->children()) . $separator);
H A DTableRenderer.php37 $attrs = $node->data->get('attributes');
43 return new HtmlElement('table', $attrs, $separator . \trim($children) . $separator);
H A DTableCellRenderer.php55 $attrs = $node->data->get('attributes');
57 $attrs = AttributesHelper::mergeAttributes($attrs, $this->alignmentAttributes[$alignment]);
62 return new HtmlElement($tag, $attrs, $childRenderer->renderNodes($node->children()));
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Renderer/
H A DFootnoteBackrefRenderer.php43 $attrs = $node->data->getData('attributes');
45 $attrs->append('class', $this->config->get('footnote/backref_class'));
46 $attrs->set('rev', 'footnote');
47 $attrs->set('href', \mb_strtolower($node->getReference()->getDestination(), 'UTF-8'));
48 $attrs->set('role', 'doc-backlink');
53 return ' ' . new HtmlElement('a', $attrs->export(), \htmlspecialchars($symbol), true);
H A DFootnoteContainerRenderer.php41 $attrs = $node->data->getData('attributes');
43 $attrs->append('class', $this->config->get('footnote/container_class'));
44 $attrs->set('role', 'doc-endnotes');
51 return new HtmlElement('div', $attrs->export(), $contents);
H A DFootnoteRefRenderer.php41 $attrs = $node->data->getData('attributes');
42 $attrs->append('class', $this->config->get('footnote/ref_class'));
43 $attrs->set('href', \mb_strtolower($node->getReference()->getDestination(), 'UTF-8'));
44 $attrs->set('role', 'doc-noteref');
55 $attrs->export(),
H A DFootnoteRenderer.php41 $attrs = $node->data->getData('attributes');
43 $attrs->append('class', $this->config->get('footnote/footnote_class'));
44 $attrs->set('id', $this->config->get('footnote/footnote_id_prefix') . \mb_strtolower($node->getReference()->getLabel(), 'UTF-8'));
45 $attrs->set('role', 'doc-endnote');
49 $attrs->export(),
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkRenderer.php57 $attrs = $node->data->getData('attributes');
67 $attrs->set('id', $idPrefix . $slug);
70 $attrs->set('href', '#' . $fragmentPrefix . $slug);
71 $attrs->append('class', $this->config->get('heading_permalink/html_class'));
75 $attrs->set('aria-hidden', 'true');
78 $attrs->set('title', $this->config->get('heading_permalink/title'));
83 return new HtmlElement('a', $attrs->export(), \htmlspecialchars($symbol), false);
/plugin/multiorphan/
H A Dscript.js176 const attrs = { class in AnonymousFunction08a2519f0800
182 attrs.target = '_blank';
184 … var $link = $('<a>').attr(attrs).text(action.label).appendTo($buttonSet).click(action.click);
/plugin/preregister/
H A Daction.php157 $button->attrs(['type' => 'submit','value'=>'Submit']);
/plugin/diagramsnet/lib/js/grapheditor/
H A DDialogs.js1378 var attrs = value.attributes;
1465 for (var i = 0; i < attrs.length; i++)
1467 if ((isLayer || attrs[i].nodeName != 'label') && attrs[i].nodeName != 'placeholders')
1469 temp.push({name: attrs[i].nodeName, value: attrs[i].nodeValue});
H A DGraph.js3019 var attrs = (cells[i].value != null) ? cells[i].value.attributes : null;
3023 if (attrs != null)
3025 for (var j = 0; j < attrs.length; j++)
3027 row[attrs[j].nodeName] = attrs[j].nodeValue;
4746 var attrs = cell.value.attributes;
4756 for (var i = 0; i < attrs.length; i++)
4758 if (mxUtils.indexOf(ignored, attrs[i].nodeName) < 0 && attrs[i].nodeValue.length > 0)
4760 temp.push({name: attrs[i].nodeName, value: attrs[i].nodeValue});
/plugin/diagramsnet/lib/js/diagramly/
H A DDialogs.js6842 var attrs = cell.value.attributes;
6844 for (var i = 0; i < attrs.length; i++)
6846 if (attrs[i].nodeName != 'label')
6848 …var value = mxUtils.trim(attrs[i].nodeValue.replace(/[\x00-\x1F\x7F-\x9F]|\s+/g, ' ')).toLowerCase…

12345678