-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (25 loc) · 853 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (25 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>re to dfa</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
<input id="myInput" type="text" placeholder="input a re" title="0、1、*、+、(、)">
<button>Submit</button>
<div id="container">
<p>dfa's transition table:</p>
<pre id="output"></pre>
<p>rg:</p>
<pre id="rg"></pre>
<p>dfa's transition diagram:</p>
</div>
<div id="graph"></div>
<script src="//d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/@hpcc-js/wasm@0.3.11/dist/index.min.js"></script>
<script src="https://unpkg.com/d3-graphviz@3.0.5/build/d3-graphviz.js"></script>
<script src="./bootstrap.js"></script>
</body>
</html>