annotate jsparser.html @ 10:8de776b8ed31

made the demo work on the web instead of the command line.
author Atul Varma <varmaa@toolness.com>
date Sat, 30 May 2009 16:08:25 -0700
parents
children 49145e1db3e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
1 <html>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
2 <head>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
3 <title>jsparser demo</title>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
4 </head>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
5 <body>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
6 <p>Input</p>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
7 <pre class="input">
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
8 5+(1-3) * 4+
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
9 -4
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
10 </pre>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
11 <p>Output</p>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
12 <pre class="output"></pre>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
13 </body>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
14 <script src="jquery.js"></script>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
15 <script src="jsparser.js"></script>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
16 <script src="parser-demo.js"></script>
8de776b8ed31 made the demo work on the web instead of the command line.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
17 </html>