bedstead/webstead.xhtml
2026-01-13 21:42:18 +00:00

28 lines
867 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml" lang="en-GB" xml:lang="en-GB">
<head>
<!-- SPDX-License-Identifier: CC0-1.0 -->
<link rel="stylesheet" href="bedstead.css" type="text/css" />
<title>Bedstead editor test</title>
<script type="module"><![CDATA[
import Bedstead from './bedstead.js';
document.getElementById("run").onclick = function(){
Bedstead({
arguments: document.getElementById("input").value.split(" "),
print: function(text) {
document.getElementById("output").textContent = text;
}
});
};
]]>
</script>
</head>
<body>
<form>
<label for="input">Input</label>
<input type="text" id="input"/>
<input type="button" id="run" value="Run!"/>
</form>
<p><code id="output"></code></p>
</body>
</html>