├── .cargo └── config.toml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── based ├── LICENSE ├── README.md ├── assets │ ├── example.svg │ └── example.typ ├── src │ ├── base16.typ │ ├── base32.typ │ ├── base64.typ │ ├── coder.typ │ └── lib.typ ├── tests │ ├── .gitignore │ ├── .ignore │ ├── decode │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── encode │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── template.typ └── typst.toml ├── droplet ├── LICENSE ├── README.md ├── assets │ ├── example-transform.svg │ ├── example-transform.typ │ ├── example.svg │ └── example.typ ├── src │ ├── droplet.typ │ ├── extract.typ │ ├── lib.typ │ ├── split.typ │ └── util.typ ├── tests │ ├── .gitignore │ ├── .ignore │ ├── basic │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── blocks │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── customize │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── explicit │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── extract │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── justify │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── split │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── template.typ └── typst.toml ├── equate ├── LICENSE ├── README.md ├── assets │ ├── example-1.svg │ ├── example-2.svg │ ├── example-local.svg │ ├── example-local.typ │ └── example.typ ├── src │ ├── equate.typ │ └── lib.typ ├── tests │ ├── .gitignore │ ├── .ignore │ ├── align-points │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── alignment │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── boxed │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── break │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ └── test.typ │ ├── local │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── margin │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ └── test.typ │ ├── number-mode │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── numbering │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── reference │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── template.typ └── typst.toml ├── hash ├── LICENSE ├── README.md ├── assets │ ├── example.svg │ └── example.typ ├── bin │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── src │ ├── hash.typ │ ├── hash.wasm │ └── lib.typ └── typst.toml ├── outex ├── LICENSE ├── README.md ├── assets │ ├── example.svg │ └── example.typ ├── src │ ├── lib.typ │ └── outex.typ └── typst.toml ├── qr ├── LICENSE ├── README.md ├── assets │ ├── example.svg │ └── example.typ ├── bin │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── src │ ├── lib.typ │ ├── qr.typ │ └── qr.wasm └── typst.toml ├── quick-maths ├── LICENSE ├── README.md ├── assets │ ├── example.svg │ └── example.typ ├── src │ ├── lib.typ │ └── quick-maths.typ ├── tests │ ├── .gitignore │ ├── .ignore │ ├── shorthands │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── template.typ └── typst.toml └── united ├── LICENSE ├── README.md ├── assets ├── postfixes.csv ├── prefixes.csv └── units.csv ├── examples ├── numbers.svg ├── numbers.typ ├── quantities.svg ├── quantities.typ ├── ranges.svg ├── ranges.typ ├── units.svg └── units.typ ├── src ├── data.typ ├── lib.typ ├── number.typ ├── unit.typ └── united.typ └── typst.toml /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/README.md -------------------------------------------------------------------------------- /based/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/LICENSE -------------------------------------------------------------------------------- /based/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/README.md -------------------------------------------------------------------------------- /based/assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/assets/example.svg -------------------------------------------------------------------------------- /based/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/assets/example.typ -------------------------------------------------------------------------------- /based/src/base16.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/src/base16.typ -------------------------------------------------------------------------------- /based/src/base32.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/src/base32.typ -------------------------------------------------------------------------------- /based/src/base64.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/src/base64.typ -------------------------------------------------------------------------------- /based/src/coder.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/src/coder.typ -------------------------------------------------------------------------------- /based/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/src/lib.typ -------------------------------------------------------------------------------- /based/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/.gitignore -------------------------------------------------------------------------------- /based/tests/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/.ignore -------------------------------------------------------------------------------- /based/tests/decode/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/decode/ref/1.png -------------------------------------------------------------------------------- /based/tests/decode/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/decode/test.typ -------------------------------------------------------------------------------- /based/tests/encode/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/encode/ref/1.png -------------------------------------------------------------------------------- /based/tests/encode/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/encode/test.typ -------------------------------------------------------------------------------- /based/tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/tests/template.typ -------------------------------------------------------------------------------- /based/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/based/typst.toml -------------------------------------------------------------------------------- /droplet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/LICENSE -------------------------------------------------------------------------------- /droplet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/README.md -------------------------------------------------------------------------------- /droplet/assets/example-transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/assets/example-transform.svg -------------------------------------------------------------------------------- /droplet/assets/example-transform.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/assets/example-transform.typ -------------------------------------------------------------------------------- /droplet/assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/assets/example.svg -------------------------------------------------------------------------------- /droplet/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/assets/example.typ -------------------------------------------------------------------------------- /droplet/src/droplet.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/src/droplet.typ -------------------------------------------------------------------------------- /droplet/src/extract.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/src/extract.typ -------------------------------------------------------------------------------- /droplet/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/src/lib.typ -------------------------------------------------------------------------------- /droplet/src/split.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/src/split.typ -------------------------------------------------------------------------------- /droplet/src/util.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/src/util.typ -------------------------------------------------------------------------------- /droplet/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/.gitignore -------------------------------------------------------------------------------- /droplet/tests/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/.ignore -------------------------------------------------------------------------------- /droplet/tests/basic/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/basic/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/basic/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/basic/test.typ -------------------------------------------------------------------------------- /droplet/tests/blocks/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/blocks/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/blocks/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/blocks/test.typ -------------------------------------------------------------------------------- /droplet/tests/customize/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/customize/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/customize/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/customize/test.typ -------------------------------------------------------------------------------- /droplet/tests/explicit/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/explicit/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/explicit/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/explicit/test.typ -------------------------------------------------------------------------------- /droplet/tests/extract/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/extract/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/extract/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/extract/test.typ -------------------------------------------------------------------------------- /droplet/tests/justify/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/justify/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/justify/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/justify/test.typ -------------------------------------------------------------------------------- /droplet/tests/split/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/split/ref/1.png -------------------------------------------------------------------------------- /droplet/tests/split/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/split/test.typ -------------------------------------------------------------------------------- /droplet/tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/tests/template.typ -------------------------------------------------------------------------------- /droplet/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/droplet/typst.toml -------------------------------------------------------------------------------- /equate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/LICENSE -------------------------------------------------------------------------------- /equate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/README.md -------------------------------------------------------------------------------- /equate/assets/example-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/assets/example-1.svg -------------------------------------------------------------------------------- /equate/assets/example-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/assets/example-2.svg -------------------------------------------------------------------------------- /equate/assets/example-local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/assets/example-local.svg -------------------------------------------------------------------------------- /equate/assets/example-local.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/assets/example-local.typ -------------------------------------------------------------------------------- /equate/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/assets/example.typ -------------------------------------------------------------------------------- /equate/src/equate.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/src/equate.typ -------------------------------------------------------------------------------- /equate/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/src/lib.typ -------------------------------------------------------------------------------- /equate/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/.gitignore -------------------------------------------------------------------------------- /equate/tests/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/.ignore -------------------------------------------------------------------------------- /equate/tests/align-points/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/align-points/ref/1.png -------------------------------------------------------------------------------- /equate/tests/align-points/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/align-points/test.typ -------------------------------------------------------------------------------- /equate/tests/alignment/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/alignment/ref/1.png -------------------------------------------------------------------------------- /equate/tests/alignment/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/alignment/test.typ -------------------------------------------------------------------------------- /equate/tests/boxed/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/boxed/ref/1.png -------------------------------------------------------------------------------- /equate/tests/boxed/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/boxed/test.typ -------------------------------------------------------------------------------- /equate/tests/break/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/1.png -------------------------------------------------------------------------------- /equate/tests/break/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/2.png -------------------------------------------------------------------------------- /equate/tests/break/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/3.png -------------------------------------------------------------------------------- /equate/tests/break/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/4.png -------------------------------------------------------------------------------- /equate/tests/break/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/5.png -------------------------------------------------------------------------------- /equate/tests/break/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/6.png -------------------------------------------------------------------------------- /equate/tests/break/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/7.png -------------------------------------------------------------------------------- /equate/tests/break/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/ref/8.png -------------------------------------------------------------------------------- /equate/tests/break/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/break/test.typ -------------------------------------------------------------------------------- /equate/tests/local/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/local/ref/1.png -------------------------------------------------------------------------------- /equate/tests/local/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/local/test.typ -------------------------------------------------------------------------------- /equate/tests/margin/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/1.png -------------------------------------------------------------------------------- /equate/tests/margin/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/2.png -------------------------------------------------------------------------------- /equate/tests/margin/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/3.png -------------------------------------------------------------------------------- /equate/tests/margin/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/4.png -------------------------------------------------------------------------------- /equate/tests/margin/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/5.png -------------------------------------------------------------------------------- /equate/tests/margin/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/6.png -------------------------------------------------------------------------------- /equate/tests/margin/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/ref/7.png -------------------------------------------------------------------------------- /equate/tests/margin/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/margin/test.typ -------------------------------------------------------------------------------- /equate/tests/number-mode/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/number-mode/ref/1.png -------------------------------------------------------------------------------- /equate/tests/number-mode/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/number-mode/test.typ -------------------------------------------------------------------------------- /equate/tests/numbering/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/numbering/ref/1.png -------------------------------------------------------------------------------- /equate/tests/numbering/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/numbering/test.typ -------------------------------------------------------------------------------- /equate/tests/reference/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/reference/ref/1.png -------------------------------------------------------------------------------- /equate/tests/reference/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/reference/test.typ -------------------------------------------------------------------------------- /equate/tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/tests/template.typ -------------------------------------------------------------------------------- /equate/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/equate/typst.toml -------------------------------------------------------------------------------- /hash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/LICENSE -------------------------------------------------------------------------------- /hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/README.md -------------------------------------------------------------------------------- /hash/assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/assets/example.svg -------------------------------------------------------------------------------- /hash/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/assets/example.typ -------------------------------------------------------------------------------- /hash/bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/bin/Cargo.toml -------------------------------------------------------------------------------- /hash/bin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/bin/src/lib.rs -------------------------------------------------------------------------------- /hash/src/hash.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/src/hash.typ -------------------------------------------------------------------------------- /hash/src/hash.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/src/hash.wasm -------------------------------------------------------------------------------- /hash/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/src/lib.typ -------------------------------------------------------------------------------- /hash/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/hash/typst.toml -------------------------------------------------------------------------------- /outex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/LICENSE -------------------------------------------------------------------------------- /outex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/README.md -------------------------------------------------------------------------------- /outex/assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/assets/example.svg -------------------------------------------------------------------------------- /outex/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/assets/example.typ -------------------------------------------------------------------------------- /outex/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/src/lib.typ -------------------------------------------------------------------------------- /outex/src/outex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/src/outex.typ -------------------------------------------------------------------------------- /outex/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/outex/typst.toml -------------------------------------------------------------------------------- /qr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/LICENSE -------------------------------------------------------------------------------- /qr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/README.md -------------------------------------------------------------------------------- /qr/assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/assets/example.svg -------------------------------------------------------------------------------- /qr/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/assets/example.typ -------------------------------------------------------------------------------- /qr/bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/bin/Cargo.toml -------------------------------------------------------------------------------- /qr/bin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/bin/src/lib.rs -------------------------------------------------------------------------------- /qr/src/lib.typ: -------------------------------------------------------------------------------- 1 | #import "qr.typ": create 2 | -------------------------------------------------------------------------------- /qr/src/qr.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/src/qr.typ -------------------------------------------------------------------------------- /qr/src/qr.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/src/qr.wasm -------------------------------------------------------------------------------- /qr/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/qr/typst.toml -------------------------------------------------------------------------------- /quick-maths/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/LICENSE -------------------------------------------------------------------------------- /quick-maths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/README.md -------------------------------------------------------------------------------- /quick-maths/assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/assets/example.svg -------------------------------------------------------------------------------- /quick-maths/assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/assets/example.typ -------------------------------------------------------------------------------- /quick-maths/src/lib.typ: -------------------------------------------------------------------------------- 1 | #import "quick-maths.typ": shorthands 2 | -------------------------------------------------------------------------------- /quick-maths/src/quick-maths.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/src/quick-maths.typ -------------------------------------------------------------------------------- /quick-maths/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/tests/.gitignore -------------------------------------------------------------------------------- /quick-maths/tests/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/tests/.ignore -------------------------------------------------------------------------------- /quick-maths/tests/shorthands/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/tests/shorthands/ref/1.png -------------------------------------------------------------------------------- /quick-maths/tests/shorthands/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/tests/shorthands/test.typ -------------------------------------------------------------------------------- /quick-maths/tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/tests/template.typ -------------------------------------------------------------------------------- /quick-maths/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/quick-maths/typst.toml -------------------------------------------------------------------------------- /united/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/LICENSE -------------------------------------------------------------------------------- /united/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/README.md -------------------------------------------------------------------------------- /united/assets/postfixes.csv: -------------------------------------------------------------------------------- 1 | squared,2 2 | cubed,3 3 | -------------------------------------------------------------------------------- /united/assets/prefixes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/assets/prefixes.csv -------------------------------------------------------------------------------- /united/assets/units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/assets/units.csv -------------------------------------------------------------------------------- /united/examples/numbers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/numbers.svg -------------------------------------------------------------------------------- /united/examples/numbers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/numbers.typ -------------------------------------------------------------------------------- /united/examples/quantities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/quantities.svg -------------------------------------------------------------------------------- /united/examples/quantities.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/quantities.typ -------------------------------------------------------------------------------- /united/examples/ranges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/ranges.svg -------------------------------------------------------------------------------- /united/examples/ranges.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/ranges.typ -------------------------------------------------------------------------------- /united/examples/units.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/units.svg -------------------------------------------------------------------------------- /united/examples/units.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/examples/units.typ -------------------------------------------------------------------------------- /united/src/data.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/src/data.typ -------------------------------------------------------------------------------- /united/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/src/lib.typ -------------------------------------------------------------------------------- /united/src/number.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/src/number.typ -------------------------------------------------------------------------------- /united/src/unit.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/src/unit.typ -------------------------------------------------------------------------------- /united/src/united.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/src/united.typ -------------------------------------------------------------------------------- /united/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-plugins/HEAD/united/typst.toml --------------------------------------------------------------------------------