Compare commits

..

No commits in common. "main" and "fix/typst-0.13" have entirely different histories.

2 changed files with 4 additions and 9 deletions

View File

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

View File

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