mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +00:00
33 lines
698 B
HTML
33 lines
698 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Tree sitter test</title>
|
|
<style>
|
|
body {
|
|
background-color: #121213;
|
|
color: white;
|
|
}
|
|
textarea {
|
|
padding: 10px;
|
|
color: white;
|
|
background-color: transparent;
|
|
outline: none;
|
|
}
|
|
a {
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="margin: 0; padding: 0">
|
|
<textarea id="code" style="width: 100%; height: 200px"></textarea>
|
|
<pre id="result"></pre>
|
|
<script
|
|
type="module"
|
|
src="/main.js
|
|
"
|
|
></script>
|
|
</body>
|
|
</html>
|