Compare commits

...

10 Commits
v0.6.4 ... main

Author SHA1 Message Date
Sven Vogel d0b4120755 fix: adjust outline spacing (#123)
Create Release Commit / prepare (push) Has been skipped Details
Create Release / Check Template and Build example (push) Successful in 4m3s Details
Create Release / release (push) Successful in 2m3s Details
Reviewed-on: #123
Co-authored-by: servostar <sven.vogel123@web.de>
Co-committed-by: servostar <sven.vogel123@web.de>
2025-03-18 07:29:02 +00:00
Sven Vogel 99750af99f ci: bump download-artifact to v4
Create Release Commit / prepare (push) Has been skipped Details
Create Release / Check Template and Build example (push) Successful in 4m45s Details
Create Release / release (push) Successful in 1m57s Details
2025-03-10 21:36:05 +01:00
Sven Vogel a46b88addc style: run typstyle v0.13
Create Release Commit / prepare (push) Has been skipped Details
Create Release / Check Template and Build example (push) Successful in 5m47s Details
Create Release / release (push) Successful in 2m4s Details
2025-03-07 00:03:17 +01:00
Sven Vogel 35b798de18 Merge branch 'fix/typst-0.13'
Create Release Commit / prepare (push) Has been skipped Details
Create Release / Check Template and Build example (push) Failing after 3m24s Details
Create Release / release (push) Has been skipped Details
2025-03-06 23:11:30 +01:00
Sven Vogel ee3bbe9e04 fix: unexpected opening parenthesis 2025-03-06 23:11:25 +01:00
Sven Vogel 21b29fcf4c ci: bump upload artifact to v3
Build'n check / run-ci-linux (push) Has been skipped Details
2025-03-06 23:11:07 +01:00
Sven Vogel ea04ed8cd1 style: format using typstyle 0.13.0
Build'n check / run-ci-linux (push) Has been skipped Details
Build'n check / run-ci-linux (pull_request) Successful in 5m31s Details
2025-03-06 16:14:21 +01:00
Sven Vogel f3ef05b31b fix: left align glossary
Build'n check / run-ci-linux (push) Has been skipped Details
Build'n check / run-ci-linux (pull_request) Failing after 7m42s Details
2025-03-06 16:09:20 +01:00
Sven Vogel 33aff90c56 fix: render outlines with typst 0.13 2025-03-06 15:27:53 +01:00
Sven Vogel 55b58e2699 fix: bump wrap-it to 0.1.1 in template 2025-03-06 14:11:17 +01:00
2 changed files with 10 additions and 5 deletions

View File

@ -24,7 +24,7 @@ jobs:
nix-shell --run ./run-ci.sh
- name: Upload artifact
id: artifact-upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: example-document
path: ${{ github.workspace }}/example.pdf
@ -47,7 +47,7 @@ jobs:
go-version: '>=1.20.1'
- name: Download Artifcat
id: download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: example-document
path: ${{ github.workspace }}/Example.pdf

View File

@ -125,9 +125,14 @@
#let new_outline() = {
pagebreak(weak: true)
show outline.entry.where(level: 1): it => {
v(1.5em, weak: true)
strong(it)
show outline.entry: it => {
if it.level == 1 {
v(1.5em, weak: true)
strong(it)
} else {
v(1.0em, weak: true)
it
}
}
render_heading_outline()