mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-13 06:58:40 +00:00
Summary: Remove all uses of underscore. For the things we actually need, make a "util" file and put them in there. Test Plan: Make sure the test still succeed, and that the main page still works. Reviewers: alpert Reviewed By: alpert Differential Revision: http://phabricator.khanacademy.org/D3043
15 lines
516 B
HTML
15 lines
516 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>KaTeX Test</title>
|
|
<script src="katex.js" type="text/javascript"></script>
|
|
<script src="main.js" type="text/javascript"></script>
|
|
<link href="katex.css" rel="stylesheet" type="text/css">
|
|
<link href="main.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
<body>
|
|
<input type="text" value="\blue\dfrac{2(y-z)}{3} \div \orange{\arctan x^{4/3}}" id="input" />
|
|
<div id="math" class="mathmathmath"></div>
|
|
</body>
|
|
</html>
|