-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xhtml
30 lines (30 loc) · 1.04 KB
/
index.xhtml
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Semantic Linebreaker</title>
<meta charset="utf-8" />
<link rel="author" href="http://about.me/waldir" />
<link rel="icon" href="icon.png" type="image/png" />
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto" />
<link rel="stylesheet" href="style.css" />
<script src="actions.js"></script>
</head>
<body>
<p>
Type or paste your text below
to have it automatically formatted
using <a href="http://rhodesmill.org/brandon/2012/one-sentence-per-line/">
semantic linebreaks</a>:
</p>
<form>
<textarea id="textbox" onkeyup="breakPhrases();" autofocus=""></textarea>
<br />
<input type="reset" value="clear" />
<input id="manual-mode" type="checkbox" value="manual" />
<label for="manual-mode">Manual mode</label>
</form>
<a id="footer" href="https://github.com/waldir/semantic-linebreaker">
source code on github
</a>
</body>
</html>