diff options
Diffstat (limited to 'tests/typ/layout/terms.typ')
| -rw-r--r-- | tests/typ/layout/terms.typ | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/typ/layout/terms.typ b/tests/typ/layout/terms.typ deleted file mode 100644 index 178aa98b..00000000 --- a/tests/typ/layout/terms.typ +++ /dev/null @@ -1,60 +0,0 @@ -// Test term list. - ---- -// Test with constructor. -#terms( - ([One], [First]), - ([Two], [Second]), -) - ---- -// Test joining. -#for word in lorem(4).split().map(s => s.trim(".")) [ - / #word: Latin stuff. -] - ---- -// Test multiline. -#set text(8pt) - -/ Fruit: A tasty, edible thing. -/ Veggie: - An important energy source - for vegetarians. - - And healthy! - ---- -// Test style change. -#set text(8pt) -/ First list: #lorem(6) - -#set terms(hanging-indent: 30pt) -/ Second list: #lorem(5) - ---- -// Test RTL. -#set text(8pt, dir: rtl) - -/ פרי: דבר טעים, אכיל. ומקור אנרגיה חשוב לצמחונים. - ---- -// Test grid like show rule. -#show terms: it => table( - columns: 2, - inset: 3pt, - ..it.children.map(v => (emph(v.term), v.description)).flatten(), -) - -/ A: One letter -/ BB: Two letters -/ CCC: Three letters - ---- -/ Term: -Not in list -/Nope - ---- -// Error: 8 expected colon -/ Hello |
