├── .github └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .typstignore ├── CHANGELOG.md ├── Justfile ├── LICENSE ├── README.md ├── assets ├── example.typ.png ├── state.typ.png └── test.typ.png ├── docs └── manual.typ ├── scripts ├── package ├── setup └── uninstall ├── src ├── chem-par.typ ├── constants.typ ├── lib.typ ├── rules.typ ├── rules │ ├── deuterated.typ │ ├── dropcaps.typ │ ├── enantiomers.typ │ ├── formulae.typ │ ├── greek.typ │ └── isomers.typ └── stateful.typ ├── tests ├── .gitignore ├── .ignore ├── state │ └── test.typ └── test1 │ ├── ref │ └── 1.png │ └── test.typ └── typst.toml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/.gitignore -------------------------------------------------------------------------------- /.typstignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/.typstignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.typ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/assets/example.typ.png -------------------------------------------------------------------------------- /assets/state.typ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/assets/state.typ.png -------------------------------------------------------------------------------- /assets/test.typ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/assets/test.typ.png -------------------------------------------------------------------------------- /docs/manual.typ: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/scripts/package -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/scripts/uninstall -------------------------------------------------------------------------------- /src/chem-par.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/chem-par.typ -------------------------------------------------------------------------------- /src/constants.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/constants.typ -------------------------------------------------------------------------------- /src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/lib.typ -------------------------------------------------------------------------------- /src/rules.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules.typ -------------------------------------------------------------------------------- /src/rules/deuterated.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules/deuterated.typ -------------------------------------------------------------------------------- /src/rules/dropcaps.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules/dropcaps.typ -------------------------------------------------------------------------------- /src/rules/enantiomers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules/enantiomers.typ -------------------------------------------------------------------------------- /src/rules/formulae.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules/formulae.typ -------------------------------------------------------------------------------- /src/rules/greek.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules/greek.typ -------------------------------------------------------------------------------- /src/rules/isomers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/rules/isomers.typ -------------------------------------------------------------------------------- /src/stateful.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/src/stateful.typ -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | diff/ 2 | out/ 3 | -------------------------------------------------------------------------------- /tests/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/tests/.ignore -------------------------------------------------------------------------------- /tests/state/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/tests/state/test.typ -------------------------------------------------------------------------------- /tests/test1/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/tests/test1/ref/1.png -------------------------------------------------------------------------------- /tests/test1/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/tests/test1/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrswift/typst-chem-par/HEAD/typst.toml --------------------------------------------------------------------------------