Lines Matching defs:pre
35 * <li> mark the {@code <pre>} and {@code <code>} tags in your source with
43 * another class to the {@code <pre>} or {@code <code>} element to specify the
44 * language, as in {@code <pre class="prettyprint lang-java">}. Any class that
70 * pre: !(number|boolean),
81 * <dt>pre<dd>truthy if white-space in text nodes
158 * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
570 * <pre>
577 * </pre>
584 * <pre>
591 * </pre>
672 pre: 1,
691 * This is meant to return the CODE element in {@code <pre><code ...>} when
694 * as in {@code <pre><code>...</code><code>...</code></pre>} or when there
1466 var sourceAndSpans = extractSourceSpans(job.sourceNode, job.pre);
1504 // The pre-tag is required for IE8 which strips newlines from innerHTML
1505 // when it is injected into a <pre> tag.
1506 // http://stackoverflow.com/questions/451486/pre-tag-loses-line-breaks-when-setting-innerhtml-in-ie
1507 // http://stackoverflow.com/questions/195363/inserting-a-newline-into-a-pre-tag-ie-javascript
1508 container.innerHTML = '<pre>' + sourceCodeHtml + '</pre>';
1519 pre: 1,
1530 * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
1543 var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
1564 var preformattedTagNameRe = /pre|xmp/i;
1566 var preCodeXmpRe = /^(?:pre|code|xmp)$/i;
1625 // <pre class="prettyprint lang-cpp">
1634 // Support <pre class="prettyprint"><code class="language-c">
1659 && 'pre' === whitespace.substring(0, 3);
1680 pre: preformatted,