-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_math.html
More file actions
24 lines (23 loc) · 827 Bytes
/
get_math.html
File metadata and controls
24 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Download chunks of math from html file</title>
</head>
<body>
<form>
HTML file to get MathML chunks from:
<input id="html_file" type="file">
<br/>
<br/>
</form>
<button onclick="get_math()">Get math in file</button>
<br/>
<br/>
<p>A simple tool that extracts mathml chunks from the content, with their surrounding lines for context.</p>
<p><p>More in-depth information can be found in the <a rel="external" href="https://commwebteam.github.io/mathml_formatter/#visually-inspecting-mathml-equations-for-correctness">readme</a>.</p>
<script src="https://commwebteam.github.io/gen_dw_format/download.js"></script>
<script src="https://commwebteam.github.io/gen_dw_format/format_helpers.js"></script>
<script src="get_math_helpers.js"></script>
</body>
</html>