add doc for coldy 1.3.1
All checks were successful
/ test_checkout (push) Successful in 51s

This commit is contained in:
Jean-Marie 'Histausse' Mineau 2025-12-06 20:56:41 +01:00
parent de568bd020
commit 689e259f5b
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
4 changed files with 38 additions and 9 deletions

View file

@ -37,3 +37,23 @@ typst compile --input draft=false --input abstract-only=true main.typ abstract.p
The CI should build the latest draft at <https://git.mineau.eu/api/packages/these-android-re/generic/thesis/latest/draft.pdf>
## Slides
To build the slides, you will need to install coldy 1.3.1 locally (the released is not yet published in the typt repository).
This release allows the highlight part of the code *without* modifying the spacing.
```
TMP="$(mktemp -d)"
curl -L https://github.com/Dherse/codly/archive/refs/tags/v1.3.1.zip -o "${TMP}/c.zip"
unzip -d "${TMP}" "${TMP}/c.zip"
mkdir -p ~/.local/share/typst/packages/local/codly
mv "${TMP}/codly-1.3.1" ~/.local/share/typst/packages/local/codly/1.3.1
rm -rf "${TMP}"
```
Then to build the slides:
```
typst compile slides.typ
```