forked from eikes/suffixtree
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
22 lines (19 loc) · 1.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Get longest repeating substring online</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="half first"><textarea id="input" placeholder='Paste some text in here...' spellcheck="false" autofocus></textarea></div>
<div class="middle">
<button id="go">Find longest repeated substring</button> <a class="github-button" href="https://github.com/Daniel-Hug/longest-repeated-substring" data-icon="octicon-star" data-style="mega" data-count-href="/Daniel-Hug/longest-repeated-substring/stargazers" data-count-api="/repos/Daniel-Hug/longest-repeated-substring#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star Daniel-Hug/longest-repeated-substring on GitHub">Star</a>
</div>
<div class="half last"><textarea id="output" placeholder='Output...' spellcheck="false"></textarea></div>
<script src="js/suffixtree.js"></script>
<script src="js/main.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>