This commit is contained in:
Fred Boniface
2024-04-26 18:37:00 +01:00
commit 12b22bd1b2
202 changed files with 63202 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"userId": 1,
"id": 1,
"title": "delectus aut autem",
"completed": false
}

4
test_input/test.css Normal file
View File

@@ -0,0 +1,4 @@
th {
width: 100;
height: 1000;
}

13
test_input/test.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>test-file</title>
</head>
<body>
<h1>This</h1>
<h2>Is</h2>
<h3>A</h3>
<h4>Test</h4>
<h5>file</h5>
</body>
</html>

8
test_input/test.js Normal file
View File

@@ -0,0 +1,8 @@
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";
}
async function logger() {
console.log("hello, how're you today");
console.error("ERR MSG");
}