-
Notifications
You must be signed in to change notification settings - Fork 0
/
preferences.html
27 lines (27 loc) · 910 Bytes
/
preferences.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Preferences</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="preferences.css">
</head>
<body>
<div class="options-pane">
<div class="option">
<label>
<input type="checkbox" name="ignore-spaces">
Ignore preceeding spaces
</label>
</div>
<div class="option">
<label>
<input type="checkbox" name="add-space-end">
Add space before newline
</label>
</div>
</div>
<script src="preferences.js"></script>
</body>
</html>