summaryrefslogtreecommitdiff
path: root/tests/typ/meta/outline-entry.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/meta/outline-entry.typ')
-rw-r--r--tests/typ/meta/outline-entry.typ59
1 files changed, 0 insertions, 59 deletions
diff --git a/tests/typ/meta/outline-entry.typ b/tests/typ/meta/outline-entry.typ
deleted file mode 100644
index 74a785a9..00000000
--- a/tests/typ/meta/outline-entry.typ
+++ /dev/null
@@ -1,59 +0,0 @@
-// Tests outline entry.
-
----
-#set page(width: 150pt)
-#set heading(numbering: "1.")
-
-#show outline.entry.where(
- level: 1
-): it => {
- v(12pt, weak: true)
- strong(it)
-}
-
-#outline(indent: auto)
-
-#set text(8pt)
-#show heading: set block(spacing: 0.65em)
-
-= Introduction
-= Background
-== History
-== State of the Art
-= Analysis
-== Setup
-
----
-#set page(width: 150pt, numbering: "I", margin: (bottom: 20pt))
-#set heading(numbering: "1.")
-#show outline.entry.where(level: 1): it => [
- #let loc = it.element.location()
- #let num = numbering(loc.page-numbering(), ..counter(page).at(loc))
- #emph(link(loc, it.body))
- #text(luma(100), box(width: 1fr, repeat[#it.fill.body;ยท]))
- #link(loc, num)
-]
-
-#counter(page).update(3)
-#outline(indent: auto, fill: repeat[--])
-
-#set text(8pt)
-#show heading: set block(spacing: 0.65em)
-
-= Top heading
-== Not top heading
-=== Lower heading
-=== Lower too
-== Also not top
-
-#pagebreak()
-#set page(numbering: "1")
-
-= Another top heading
-== Middle heading
-=== Lower heading
-
----
-// Error: 2-27 cannot outline metadata
-#outline(target: metadata)
-#metadata("hello")