
Summary: Improve the build process by combining the CSS files, automatically selecting font files to include, and building .tar.gz and .zip files. Test Plan: - Make sure tests work - Make sure huxley screenshots didn't change - Make sure zip and tar.gz files contain only files we want to distribute Reviewers: alpert Reviewed By: alpert Differential Revision: http://phabricator.khanacademy.org/D13159
19 lines
755 B
HTML
19 lines
755 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>KaTeX Test</title>
|
|
<script src="katex.js" type="text/javascript"></script>
|
|
<link href="fonts.css" rel="stylesheet" type="text/css">
|
|
<link href="katex.css" rel="stylesheet" type="text/css">
|
|
<link href="main.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
<body>
|
|
<input type="text"
|
|
value="(\left( x \right) \left( x^2 \right) \left( \frac{a}{b} \right) \left( \frac{a^2}{b} \right) \left( \dfrac{a}{b} \right) \left( \dfrac{a^2}{b} \right)"
|
|
id="input" />
|
|
<div id="math"></div>
|
|
<input id="permalink" type="button" value="permalink">
|
|
<script src="main.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|