Compare commits
No commits in common. "main" and "v0.6.4" have entirely different histories.
|
@ -24,7 +24,7 @@ jobs:
|
||||||
nix-shell --run ./run-ci.sh
|
nix-shell --run ./run-ci.sh
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
id: artifact-upload
|
id: artifact-upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: example-document
|
name: example-document
|
||||||
path: ${{ github.workspace }}/example.pdf
|
path: ${{ github.workspace }}/example.pdf
|
||||||
|
@ -47,7 +47,7 @@ jobs:
|
||||||
go-version: '>=1.20.1'
|
go-version: '>=1.20.1'
|
||||||
- name: Download Artifcat
|
- name: Download Artifcat
|
||||||
id: download
|
id: download
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: example-document
|
name: example-document
|
||||||
path: ${{ github.workspace }}/Example.pdf
|
path: ${{ github.workspace }}/Example.pdf
|
||||||
|
|
|
@ -125,14 +125,9 @@
|
||||||
#let new_outline() = {
|
#let new_outline() = {
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
show outline.entry: it => {
|
show outline.entry.where(level: 1): it => {
|
||||||
if it.level == 1 {
|
v(1.5em, weak: true)
|
||||||
v(1.5em, weak: true)
|
strong(it)
|
||||||
strong(it)
|
|
||||||
} else {
|
|
||||||
v(1.0em, weak: true)
|
|
||||||
it
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render_heading_outline()
|
render_heading_outline()
|
||||||
|
|
Loading…
Reference in New Issue