ultron-web 0.2.3

Ultron editor variant exposed as a web application
Documentation
<!doctype html>
<html>
  <head>
    <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Code editor</title>
    <style type="text/css">
        @font-face {
          font-family: JuliaMono;
          src: url(./assets/JuliaMono-Light.woff2);
        }
        body {
            font-family: "JuliaMono", "Fira Sans", "Courier New", Courier,"Lucida Sans Typewriter","Lucida Typewriter",monospace;
            margin: 0;
            background-color: rgba(0,43,54,1.0);
        }
    </style>
    <link rel="modulepreload" href="./pkg/ultron_web.js">
    <link rel="modulepreload" href="./pkg/ultron_web_bg.wasm">
  </head>
  <body>
    <script type=module>
      import wasm_bindgen from './pkg/ultron_web.js';
      async function start(){
        await wasm_bindgen().catch(console.error);
      }
      start();
    </script>
  </body>
</html>