├── .gitignore ├── .vscode └── extensions.json ├── LICENSE.md ├── README.md ├── index.html ├── jsconfig.json ├── package.json ├── prettier.config.js ├── public ├── book-open.svg ├── c.typ ├── c2.typ ├── d.typ ├── d2.typ ├── demo.typ ├── github.svg ├── gtypist.typ ├── n.typ ├── n2.typ ├── p2.typ ├── plus.svg ├── q.typ ├── q2.typ ├── r.typ ├── r2.typ ├── s.typ ├── s2.typ ├── t.typ ├── t2.typ ├── u.typ ├── u2.typ ├── v.typ ├── v2.typ └── vite.svg ├── src ├── App.svelte ├── app.css ├── assets │ └── svelte.svg ├── components │ ├── BTIDisplay.svelte │ ├── LoadType.svelte │ ├── Menu.svelte │ ├── Progressbox.svelte │ ├── Query.svelte │ └── Writebox.svelte ├── constants │ └── constants.js ├── main.js ├── parser │ └── script.js ├── stores │ └── textstore.js ├── util │ └── Typeutils.js └── vite-env.d.ts ├── svelte.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/book-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/book-open.svg -------------------------------------------------------------------------------- /public/c.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/c.typ -------------------------------------------------------------------------------- /public/c2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/c2.typ -------------------------------------------------------------------------------- /public/d.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/d.typ -------------------------------------------------------------------------------- /public/d2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/d2.typ -------------------------------------------------------------------------------- /public/demo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/demo.typ -------------------------------------------------------------------------------- /public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/github.svg -------------------------------------------------------------------------------- /public/gtypist.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/gtypist.typ -------------------------------------------------------------------------------- /public/n.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/n.typ -------------------------------------------------------------------------------- /public/n2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/n2.typ -------------------------------------------------------------------------------- /public/p2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/p2.typ -------------------------------------------------------------------------------- /public/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/plus.svg -------------------------------------------------------------------------------- /public/q.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/q.typ -------------------------------------------------------------------------------- /public/q2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/q2.typ -------------------------------------------------------------------------------- /public/r.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/r.typ -------------------------------------------------------------------------------- /public/r2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/r2.typ -------------------------------------------------------------------------------- /public/s.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/s.typ -------------------------------------------------------------------------------- /public/s2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/s2.typ -------------------------------------------------------------------------------- /public/t.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/t.typ -------------------------------------------------------------------------------- /public/t2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/t2.typ -------------------------------------------------------------------------------- /public/u.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/u.typ -------------------------------------------------------------------------------- /public/u2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/u2.typ -------------------------------------------------------------------------------- /public/v.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/v.typ -------------------------------------------------------------------------------- /public/v2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/v2.typ -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/app.css -------------------------------------------------------------------------------- /src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/assets/svelte.svg -------------------------------------------------------------------------------- /src/components/BTIDisplay.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/components/BTIDisplay.svelte -------------------------------------------------------------------------------- /src/components/LoadType.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/components/LoadType.svelte -------------------------------------------------------------------------------- /src/components/Menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/components/Menu.svelte -------------------------------------------------------------------------------- /src/components/Progressbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/components/Progressbox.svelte -------------------------------------------------------------------------------- /src/components/Query.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/components/Query.svelte -------------------------------------------------------------------------------- /src/components/Writebox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/components/Writebox.svelte -------------------------------------------------------------------------------- /src/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/constants/constants.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/main.js -------------------------------------------------------------------------------- /src/parser/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/parser/script.js -------------------------------------------------------------------------------- /src/stores/textstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/stores/textstore.js -------------------------------------------------------------------------------- /src/util/Typeutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/util/Typeutils.js -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/svelte.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshzip/webtypist/HEAD/vite.config.js --------------------------------------------------------------------------------