forked from omrihar/mathflowy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptions.html
52 lines (49 loc) · 1.18 KB
/
options.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
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
<!DOCTYPE html>
<html>
<head>
<title>Mathflowy Options</title>
<style>
body: { padding: 10px; }
</style>
</head>
<body>
Delimiters:
<div>
<label>
<input type="checkbox" id="inline-("><code>\( \pi \)</code> for Inline
</label>
</div>
<div>
<label>
<input type="checkbox" id="inline-$"><code>$ \pi $</code> for Inline
</label>
</div>
<div>
<label>
<input type="checkbox" id="display-["><code>\[ \pi \]</code> for Display
</label>
</div>
<div>
<label>
<input type="checkbox" id="display-$$"><code>$$ \pi $$</code> for Display
</label>
</div>
<div>
<label>
<input type="checkbox" id="inline-custom"> Custom inline delimiters:
</label>
<input type="text" id="inline-custom-left" size="3">
<input type="text" id="inline-custom-right" size="3">
</div>
<div>
<label>
<input type="checkbox" id="display-custom"> Custom display delimiters:
</label>
<input type="text" id="display-custom-left" size="3">
<input type="text" id="display-custom-right" size="3">
</div>
<div id="message"></div>
<button id="save">OK</button>
<script src="options.js"></script>
</body>
</html>