├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── pkg ├── pyrunner.typ └── typst.toml ├── src └── lib.rs └── test ├── example.pdf └── example.typ /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /pkg/*.wasm 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/README.md -------------------------------------------------------------------------------- /pkg/pyrunner.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/pkg/pyrunner.typ -------------------------------------------------------------------------------- /pkg/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/pkg/typst.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/test/example.pdf -------------------------------------------------------------------------------- /test/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peng1999/typst-pyrunner/HEAD/test/example.typ --------------------------------------------------------------------------------