update inbox list
This commit is contained in:
8
vendor/scrivo/highlight.php/test/markup/ebnf/quote-symbols.expect.txt
vendored
Normal file
8
vendor/scrivo/highlight.php/test/markup/ebnf/quote-symbols.expect.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<span class="hljs-attribute">first_quote_symbol</span> = <span class="hljs-string">"'"</span> .
|
||||
<span class="hljs-attribute">second_quote_symbol</span> = <span class="hljs-string">'"'</span> .
|
||||
|
||||
<span class="hljs-comment">(* escaped_quote_symbol tests backticks, which does not interfere
|
||||
* with backslashes. It has precedent in some language
|
||||
* specifications.
|
||||
*)</span>
|
||||
<span class="hljs-attribute">escaped_quote_symbol</span> = <span class="hljs-string">`\`</span> ( first_quote_symbol | second_quote_symbol ) .
|
||||
8
vendor/scrivo/highlight.php/test/markup/ebnf/quote-symbols.txt
vendored
Normal file
8
vendor/scrivo/highlight.php/test/markup/ebnf/quote-symbols.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
first_quote_symbol = "'" .
|
||||
second_quote_symbol = '"' .
|
||||
|
||||
(* escaped_quote_symbol tests backticks, which does not interfere
|
||||
* with backslashes. It has precedent in some language
|
||||
* specifications.
|
||||
*)
|
||||
escaped_quote_symbol = `\` ( first_quote_symbol | second_quote_symbol ) .
|
||||
3
vendor/scrivo/highlight.php/test/markup/ebnf/terminators.expect.txt
vendored
Normal file
3
vendor/scrivo/highlight.php/test/markup/ebnf/terminators.expect.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<span class="hljs-attribute">full-stop</span> = <span class="hljs-string">"."</span> .
|
||||
<span class="hljs-attribute">semicolon</span> = <span class="hljs-string">";"</span> ;
|
||||
<span class="hljs-attribute">end-test</span> = <span class="hljs-string">"end"</span> ; <span class="hljs-comment">(* ending production to test semicolon *)</span>
|
||||
3
vendor/scrivo/highlight.php/test/markup/ebnf/terminators.txt
vendored
Normal file
3
vendor/scrivo/highlight.php/test/markup/ebnf/terminators.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
full-stop = "." .
|
||||
semicolon = ";" ;
|
||||
end-test = "end" ; (* ending production to test semicolon *)
|
||||
1
vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.expect.txt
vendored
Normal file
1
vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.expect.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<span class="hljs-attribute">a_production</span> = nonterminal ;
|
||||
1
vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.txt
vendored
Normal file
1
vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
a_production = nonterminal ;
|
||||
Reference in New Issue
Block a user