commit 4118b30a7dccd67ea9febe8be0ff84cd14407562
parent 806f48acdfffe9293a9d520918ed8d8b3b44d6cc
Author: Davide P. Cervone <dpvc@union.edu>
Date: Thu, 11 Nov 2010 22:20:20 -0500
test directory was not supposed to become part of the main repository (it was just for testing the fixes
Diffstat:
2 files changed, 0 insertions(+), 55 deletions(-)
diff --git a/test/jsMath2jax.html b/test/jsMath2jax.html
@@ -1,30 +0,0 @@
-<html>
-<head>
-<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
-<title>jsMath2jax Test</title>
-<script src="../mathjax/unpacked/MathJax.js">
- MathJax.Hub.Config({
- jax: ["input/TeX","output/HTML-CSS"],
- extensions: ["tex2jax.js","jsMath2jax.js"]
- });
-</script>
-</head>
-<body>
-
-\begin{eqnarray}
- x & = & 4y + 3z \\
- z & > & a + b + ... + j + \\
- & & k + l + m
- \end{eqnarray}
-
-<div class="math">
-\begin{eqnarray}
- x & = & 4y + 3z \\
- z & > & a + b + ... + j + \\
- & & k + l + m
- \end{eqnarray}
-
-</div>
-
-</body>
-</html>
diff --git a/test/tex2jax.html b/test/tex2jax.html
@@ -1,25 +0,0 @@
-<html>
-<head>
-<title>MathJax tex2jax Test</title>
-<script src="../mathjax/unpacked/MathJax.js">
- MathJax.Hub.Config({
- jax: ["input/TeX","output/HTML-CSS"],
- extensions: ["tex2jax.js"]
- });
-</script>
-<style>
- p {border: 1px solid black; background:#EEEEEE;}
-</style>
-</head>
-<body>
-
-<p>Text Before: \(x+1\)</p>
-<p>\(x+1\) Text after</p>
-<p>\(\text{no text}\)</p>
-
-<p>Text Before: $$x+1$$</p>
-<p>$$x+1$$ Text after</p>
-<p>$$\text{no text}$$</p>
-
-</body>
-</html>