-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (80 loc) · 2.49 KB
/
index.html
File metadata and controls
80 lines (80 loc) · 2.49 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<title>
JavaScript lexical analyzer
</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row top-buffer">
<input id="file" name="file" type="file">
</div>
<div class="row" id="source_code"></div>
<div class="row top-buffer">
<table class="table table-bordered">
<thead>
<tr id="lexems">
</tr>
</thead>
<tbody>
<tr id="lexemsPositions">
</tr>
</tbody>
</table>
</div>
<div class="row top-buffer">
<div class="col-md-3">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Keywords</th>
</tr>
</thead>
<tbody id="keywords">
</tbody>
</table>
</div>
<div class="col-md-3">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Identificators</th>
</tr>
</thead>
<tbody id="identificators">
</tbody>
</table>
</div>
<div class="col-md-3">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Constants</th>
</tr>
</thead>
<tbody id="constants">
</tbody>
</table>
</div>
<div class="col-md-3">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>DELIMITERS</th>
</tr>
</thead>
<tbody id="delimiters">
</tbody>
</table>
</div>
</div>
</div>
<script src="public/main.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>