aboutsummaryrefslogtreecommitdiff
path: root/demo.html
diff options
context:
space:
mode:
authorRadu <radu@pml4t.net>2023-08-26 17:29:35 -0400
committerRadu <radu@pml4t.net>2023-08-27 16:45:36 -0400
commit76debe0071fef6865bd0fb79199f53932bf063c0 (patch)
treebfbadb7592e9f2ace3e1f0f9d150d44b9e190f66 /demo.html
Write a working version and include licences
Support some symbols, arrows, bold, subscript and superscript.
Diffstat (limited to 'demo.html')
-rw-r--r--demo.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/demo.html b/demo.html
new file mode 100644
index 0000000..4bd8899
--- /dev/null
+++ b/demo.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<!-- SPDX-License-Identifier: GPL-2.0-only -->
+
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <style>
+ html,
+ body {
+ margin: 0;
+ padding: 0;
+ }
+
+ textarea {
+ font-family: sans-serif;
+ font-size: xxx-large;
+ width: 100%;
+ height: 100vh;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ }
+ </style>
+ </head>
+ <body>
+ <textarea autofocus></textarea>
+ <script src="init-unicode-maps.js"></script>
+ <script src="unicode-maps-to-bold.js"></script>
+ <script src="unicode-maps-to-subscript.js"></script>
+ <script src="unicode-maps-to-superscript.js"></script>
+ <script src="page.js"></script>
+ </body>
+</html>