You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
793 B
26 lines
793 B
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Finite-state automaton</title>
|
|
<meta name="description" content="Test a word against a finite-state automaton" />
|
|
<link rel="stylesheet" href="src/style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div class="input">
|
|
<input type="text" id="word-input" autocapitalize="off" spellcheck="false" />
|
|
<div id="light"></div>
|
|
</div>
|
|
<div class="input">
|
|
<div id="input-buttons"></div>
|
|
<button id="clear-button">Clear</button>
|
|
</div>
|
|
<pre id="pen"></pre>
|
|
<pre id="state-graph"></pre>
|
|
</div>
|
|
<script type="module" src="src/fsm.js"></script>
|
|
</body>
|
|
</html>
|