Skip to content

Commit 07e09d9

Browse files
committed
add comment markup test
1 parent 2c40d85 commit 07e09d9

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<span class="hljs-comment">/**
2+
* This is a test comment
3+
* It crosses multiple lines
4+
* RAScript supports multiple types of comments
5+
**/</span>
6+
7+
<span class="hljs-comment">// This is the second form, a single line comment</span>
8+
9+
<span class="hljs-variable">non_comment</span> = <span class="hljs-string">&quot;this is not part of the comment&quot;</span>

test/markup/rascript/comments.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
* This is a test comment
3+
* It crosses multiple lines
4+
* RAScript supports multiple types of comments
5+
**/
6+
7+
// This is the second form, a single line comment
8+
9+
non_comment = "this is not part of the comment"

0 commit comments

Comments
 (0)