Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
d0b4120755 | |
|
99750af99f |
|
@ -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@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: example-document
|
name: example-document
|
||||||
path: ${{ github.workspace }}/Example.pdf
|
path: ${{ github.workspace }}/Example.pdf
|
||||||
|
|
|
@ -125,9 +125,14 @@
|
||||||
#let new_outline() = {
|
#let new_outline() = {
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
show outline.entry.where(level: 1): it => {
|
show outline.entry: it => {
|
||||||
v(1.5em, weak: true)
|
if it.level == 1 {
|
||||||
strong(it)
|
v(1.5em, weak: true)
|
||||||
|
strong(it)
|
||||||
|
} else {
|
||||||
|
v(1.0em, weak: true)
|
||||||
|
it
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
render_heading_outline()
|
render_heading_outline()
|
||||||
|
|
Loading…
Reference in New Issue