├── LICENSE ├── README.md ├── blinky.typ ├── examples ├── README.md ├── apa-blinky.csl ├── association-for-computational-linguistics-blinky.csl ├── custom.bib ├── main.pdf ├── main.typ └── screenshot.png ├── playground ├── test.typ ├── test2.typ ├── test3.typ └── x.txt ├── plugin └── blinky │ ├── Cargo.toml │ ├── plugin │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ └── src │ └── lib.rs ├── scripts ├── create-github.sh ├── make-release.sh ├── publish-local.sh └── upload.sh └── typst-template.toml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/README.md -------------------------------------------------------------------------------- /blinky.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/blinky.typ -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/apa-blinky.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/apa-blinky.csl -------------------------------------------------------------------------------- /examples/association-for-computational-linguistics-blinky.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/association-for-computational-linguistics-blinky.csl -------------------------------------------------------------------------------- /examples/custom.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/custom.bib -------------------------------------------------------------------------------- /examples/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/main.pdf -------------------------------------------------------------------------------- /examples/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/main.typ -------------------------------------------------------------------------------- /examples/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/examples/screenshot.png -------------------------------------------------------------------------------- /playground/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/playground/test.typ -------------------------------------------------------------------------------- /playground/test2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/playground/test2.typ -------------------------------------------------------------------------------- /playground/test3.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/playground/test3.typ -------------------------------------------------------------------------------- /playground/x.txt: -------------------------------------------------------------------------------- 1 | <<<10.18653/v1/2020.acl-main.463||| Paper title>>> 2 | -------------------------------------------------------------------------------- /plugin/blinky/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/plugin/blinky/Cargo.toml -------------------------------------------------------------------------------- /plugin/blinky/plugin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/plugin/blinky/plugin/Cargo.toml -------------------------------------------------------------------------------- /plugin/blinky/plugin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/plugin/blinky/plugin/src/lib.rs -------------------------------------------------------------------------------- /plugin/blinky/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/plugin/blinky/src/lib.rs -------------------------------------------------------------------------------- /scripts/create-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/scripts/create-github.sh -------------------------------------------------------------------------------- /scripts/make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/scripts/make-release.sh -------------------------------------------------------------------------------- /scripts/publish-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/scripts/publish-local.sh -------------------------------------------------------------------------------- /scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/scripts/upload.sh -------------------------------------------------------------------------------- /typst-template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoller/typst-blinky/HEAD/typst-template.toml --------------------------------------------------------------------------------