summaryrefslogtreecommitdiff
path: root/examples/letter/editor/editor.html
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-12-04 13:55:35 +0000
committeraarne <aarne@cs.chalmers.se>2008-12-04 13:55:35 +0000
commitd8c2b34b8e03dfa91b336822a3748a887b79b527 (patch)
tree6a8aeae9f61c3a0828b632d5388bec7dca5ea653 /examples/letter/editor/editor.html
parent2440854310c96fff410fb4d90dc7759cec785b3d (diff)
the letter grammar set ported to GF 3
Diffstat (limited to 'examples/letter/editor/editor.html')
-rw-r--r--examples/letter/editor/editor.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/letter/editor/editor.html b/examples/letter/editor/editor.html
new file mode 100644
index 000000000..5c9aa4fc5
--- /dev/null
+++ b/examples/letter/editor/editor.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <link rel="stylesheet" type="text/css" href="style.css" />
+ <script type="text/javascript" src="gflib.js"></script>
+ <script type="text/javascript" src="editorGrammar.js"></script>
+ <script type="text/javascript" src="grammar.js"></script>
+ <script type="text/javascript" src="gfjseditor.js"></script>
+ <title>Web-based Syntax Editor</title>
+ </head>
+ <body onload="mkEditor('editor',Letter)" onkeydown="hotKeys(event)">
+ <div id="editor">
+ </div>
+ </body>
+</html>