├── .editorconfig ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── Justfile ├── Makefile ├── README.md ├── config.toml ├── content ├── _index.md ├── dropcaps.md ├── hello-world.md ├── hieroglyphs.md ├── integral-alignment.md ├── italic-correction.md ├── page-geometry.md ├── prime-symbol.md ├── superscript.md ├── title-case.md ├── varlimits.md └── willans.md ├── data ├── dropcaps │ ├── groff.mom │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── hello-world │ ├── groff.ms │ ├── pagedjs.html │ ├── satysfi.saty │ ├── sile.sil │ ├── sile.xml │ ├── typst.typ │ ├── weasyprint.html │ └── xelatex.tex ├── hieroglyphs │ ├── sile.sil │ └── typst.typ ├── integral-alignment │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── italic-correction │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── page-geometry │ ├── groff.ms │ ├── pagedjs.html │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── prime-symbol │ ├── groff.ms │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── superscript │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── title-case │ ├── sile.sil │ └── typst.typ ├── varlimits │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex └── willans │ ├── sile.sil │ ├── typst.typ │ └── xelatex.tex ├── flake.lock ├── flake.nix ├── package.json ├── polytype-dev-1.rockspec ├── sass └── main.scss ├── shell.nix ├── src └── codemirror.js └── templates ├── default.html ├── index.html ├── menu.html └── page.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/.gitignore -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/Justfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /content/dropcaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/dropcaps.md -------------------------------------------------------------------------------- /content/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/hello-world.md -------------------------------------------------------------------------------- /content/hieroglyphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/hieroglyphs.md -------------------------------------------------------------------------------- /content/integral-alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/integral-alignment.md -------------------------------------------------------------------------------- /content/italic-correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/italic-correction.md -------------------------------------------------------------------------------- /content/page-geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/page-geometry.md -------------------------------------------------------------------------------- /content/prime-symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/prime-symbol.md -------------------------------------------------------------------------------- /content/superscript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/superscript.md -------------------------------------------------------------------------------- /content/title-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/title-case.md -------------------------------------------------------------------------------- /content/varlimits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/varlimits.md -------------------------------------------------------------------------------- /content/willans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/content/willans.md -------------------------------------------------------------------------------- /data/dropcaps/groff.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/dropcaps/groff.mom -------------------------------------------------------------------------------- /data/dropcaps/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/dropcaps/sile.sil -------------------------------------------------------------------------------- /data/dropcaps/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/dropcaps/typst.typ -------------------------------------------------------------------------------- /data/dropcaps/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/dropcaps/xelatex.tex -------------------------------------------------------------------------------- /data/hello-world/groff.ms: -------------------------------------------------------------------------------- 1 | .ds CF % 2 | .LP 3 | Hello World 4 | -------------------------------------------------------------------------------- /data/hello-world/pagedjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hello-world/pagedjs.html -------------------------------------------------------------------------------- /data/hello-world/satysfi.saty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hello-world/satysfi.saty -------------------------------------------------------------------------------- /data/hello-world/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hello-world/sile.sil -------------------------------------------------------------------------------- /data/hello-world/sile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hello-world/sile.xml -------------------------------------------------------------------------------- /data/hello-world/typst.typ: -------------------------------------------------------------------------------- 1 | #set page(numbering: "1") 2 | 3 | Hello World 4 | -------------------------------------------------------------------------------- /data/hello-world/weasyprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hello-world/weasyprint.html -------------------------------------------------------------------------------- /data/hello-world/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hello-world/xelatex.tex -------------------------------------------------------------------------------- /data/hieroglyphs/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hieroglyphs/sile.sil -------------------------------------------------------------------------------- /data/hieroglyphs/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/hieroglyphs/typst.typ -------------------------------------------------------------------------------- /data/integral-alignment/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/integral-alignment/sile.sil -------------------------------------------------------------------------------- /data/integral-alignment/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/integral-alignment/typst.typ -------------------------------------------------------------------------------- /data/integral-alignment/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/integral-alignment/xelatex.tex -------------------------------------------------------------------------------- /data/italic-correction/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/italic-correction/sile.sil -------------------------------------------------------------------------------- /data/italic-correction/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/italic-correction/typst.typ -------------------------------------------------------------------------------- /data/italic-correction/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/italic-correction/xelatex.tex -------------------------------------------------------------------------------- /data/page-geometry/groff.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/page-geometry/groff.ms -------------------------------------------------------------------------------- /data/page-geometry/pagedjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/page-geometry/pagedjs.html -------------------------------------------------------------------------------- /data/page-geometry/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/page-geometry/sile.sil -------------------------------------------------------------------------------- /data/page-geometry/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/page-geometry/typst.typ -------------------------------------------------------------------------------- /data/page-geometry/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/page-geometry/xelatex.tex -------------------------------------------------------------------------------- /data/prime-symbol/groff.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/prime-symbol/groff.ms -------------------------------------------------------------------------------- /data/prime-symbol/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/prime-symbol/sile.sil -------------------------------------------------------------------------------- /data/prime-symbol/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/prime-symbol/typst.typ -------------------------------------------------------------------------------- /data/prime-symbol/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/prime-symbol/xelatex.tex -------------------------------------------------------------------------------- /data/superscript/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/superscript/sile.sil -------------------------------------------------------------------------------- /data/superscript/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/superscript/typst.typ -------------------------------------------------------------------------------- /data/superscript/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/superscript/xelatex.tex -------------------------------------------------------------------------------- /data/title-case/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/title-case/sile.sil -------------------------------------------------------------------------------- /data/title-case/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/title-case/typst.typ -------------------------------------------------------------------------------- /data/varlimits/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/varlimits/sile.sil -------------------------------------------------------------------------------- /data/varlimits/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/varlimits/typst.typ -------------------------------------------------------------------------------- /data/varlimits/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/varlimits/xelatex.tex -------------------------------------------------------------------------------- /data/willans/sile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/willans/sile.sil -------------------------------------------------------------------------------- /data/willans/typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/willans/typst.typ -------------------------------------------------------------------------------- /data/willans/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/data/willans/xelatex.tex -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/package.json -------------------------------------------------------------------------------- /polytype-dev-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/polytype-dev-1.rockspec -------------------------------------------------------------------------------- /sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/sass/main.scss -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/shell.nix -------------------------------------------------------------------------------- /src/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/src/codemirror.js -------------------------------------------------------------------------------- /templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/templates/default.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/templates/menu.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerque/polytype/HEAD/templates/page.html --------------------------------------------------------------------------------