use prism-tomorrow.css

This commit is contained in:
CyC2018
2018-12-19 14:09:39 +08:00
parent 0f00bcacaf
commit e9e604e6a7
1747 changed files with 100462 additions and 0 deletions

View File

@ -0,0 +1,52 @@
<h2>Comments</h2>
<pre><code>; Single-line comment
#comments-start
Multi-line
comment
#comments-end
#cs
Multi-line
comment
#ce
;#comments-start
foo()
;#comments-end</code></pre>
<h2>Strings</h2>
<pre><code>"foo'bar'baz"
"foo""bar""baz"
'foo"bar"baz'
'foo''bar''baz'</code></pre>
<h2>Numbers</h2>
<pre><code>2
4.566
1.5e3
0x4fff</code></pre>
<h2>Booleans</h2>
<pre><code>True
False</code></pre>
<h2>Keywords and variables</h2>
<pre><code>; Display all the numbers for 1 to 10 but skip displaying 7.
For $i = 1 To 10
If $i = 7 Then
ContinueLoop ; Skip displaying the message box when $i is equal to 7.
EndIf
MsgBox($MB_SYSTEMMODAL, "", "The value of $i is: " & $i)
Next</code></pre>
<h2>Known failures</h2>
<p>There are certain edge cases where Prism will fail.
There are always such cases in every regex-based syntax highlighter.
However, Prism dares to be open and honest about them.
If a failure is listed here, it doesnt mean it will never be fixed. This is more of a “known bugs” list, just with a certain type of bug.
</p>
<h3>Nested block comments</h3>
<pre><code>#cs
#cs
foo()
#ce
#ce</code></pre>