aboutsummaryrefslogtreecommitdiff
path: root/demo.html
blob: f4629a6d24fa9f04d7a0239cb559185063b3e8bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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>
      async function subEnabled() {
        return true;
      }
    </script>
    <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>