more test inputs

This commit is contained in:
anon
2023-11-29 22:15:04 +01:00
parent 6cdf8c639f
commit fcf7847159
4 changed files with 26 additions and 0 deletions

10
test/example.csml Normal file
View File

@ -0,0 +1,10 @@
html {
title (id: t) {title}
hr;
div {
lorem ipsum
}
script {{
console.log("heyo");
}}
}

10
test/example.html Normal file
View File

@ -0,0 +1,10 @@
<html>
<title id='t'>title</title>
<hr/>
<div>
lorem ipsum
</div>
<script>
console.log("heyo");
</script>
</html>

3
test/parent.csml Normal file
View File

@ -0,0 +1,3 @@
div {
this \(file\) is a test\;
}

3
test/parent.html Normal file
View File

@ -0,0 +1,3 @@
<div>
this (file) is a test;
</div>