update inbox list
This commit is contained in:
1
vendor/scrivo/highlight.php/test/special/languagealias.expect.txt
vendored
Normal file
1
vendor/scrivo/highlight.php/test/special/languagealias.expect.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<span class="hljs-keyword">var</span> x = <span class="hljs-string">'<p>this should <b>not</b> be highlighted as <em>HTML</em>'</span>;
|
||||
1
vendor/scrivo/highlight.php/test/special/languagealias.txt
vendored
Normal file
1
vendor/scrivo/highlight.php/test/special/languagealias.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
var x = '<p>this should <b>not</b> be highlighted as <em>HTML</em>';
|
||||
4
vendor/scrivo/highlight.php/test/special/line-endings.crlf.expect.txt
vendored
Normal file
4
vendor/scrivo/highlight.php/test/special/line-endings.crlf.expect.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<span class="hljs-comment">// FileComponent Class</span>
|
||||
<span class="hljs-keyword">export</span> <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">FileComponent</span> </span>{
|
||||
file = { <span class="hljs-attr">name</span>: <span class="hljs-string">'logo.svg'</span>, <span class="hljs-attr">size</span>: <span class="hljs-number">2120109</span>, <span class="hljs-attr">type</span>: <span class="hljs-string">'image/svg'</span> };
|
||||
}
|
||||
4
vendor/scrivo/highlight.php/test/special/line-endings.crlf.txt
vendored
Normal file
4
vendor/scrivo/highlight.php/test/special/line-endings.crlf.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
// FileComponent Class
|
||||
export class FileComponent {
|
||||
file = { name: 'logo.svg', size: 2120109, type: 'image/svg' };
|
||||
}
|
||||
4
vendor/scrivo/highlight.php/test/special/sublanguages.expect.txt
vendored
Normal file
4
vendor/scrivo/highlight.php/test/special/sublanguages.expect.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<span class="php"><span class="hljs-meta"><?</span> <span class="hljs-keyword">echo</span> <span class="hljs-string">'php'</span>; <span class="hljs-comment">/* ?> */</span> <span class="hljs-meta">?></span></span>
|
||||
<span class="hljs-tag"><<span class="hljs-name">body</span>></span>
|
||||
<span class="hljs-tag"><<span class="hljs-name">script</span>></span><span class="javascript"><span class="hljs-built_in">document</span>.write(<span class="hljs-string">'Legacy code'</span>);</span><span class="hljs-tag"></<span class="hljs-name">script</span>></span>
|
||||
<span class="hljs-tag"></<span class="hljs-name">body</span>></span>
|
||||
4
vendor/scrivo/highlight.php/test/special/sublanguages.txt
vendored
Normal file
4
vendor/scrivo/highlight.php/test/special/sublanguages.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<? echo 'php'; /* ?> */ ?>
|
||||
<body>
|
||||
<script>document.write('Legacy code');</script>
|
||||
</body>
|
||||
2
vendor/scrivo/highlight.php/test/special/tabreplace.expect.txt
vendored
Normal file
2
vendor/scrivo/highlight.php/test/special/tabreplace.expect.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
<span class="hljs-keyword">for</span> x <span class="hljs-keyword">in</span> [<span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>]:
|
||||
count(x)
|
||||
2
vendor/scrivo/highlight.php/test/special/tabreplace.txt
vendored
Normal file
2
vendor/scrivo/highlight.php/test/special/tabreplace.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
for x in [1, 2, 3]:
|
||||
count(x)
|
||||
Reference in New Issue
Block a user