summaryrefslogtreecommitdiff
path: root/tests/suite/styling/fold.typ
blob: 26fe991b2a3b97e908ef787bd77b2f372680576b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- fold-vec-order-text-features ---
// Test fold order of vectors.
#set text(features: (liga: 1))
#set text(features: (liga: 0))
fi

--- fold-vec-order-text-decos ---
#underline(stroke: aqua + 4pt)[
  #underline[Hello]
]

--- fold-vec-order-meta ---
#let c = counter("mycounter")
#c.update(1)
#locate(loc => [
  #c.update(2)
  #c.at(loc) \
  Second: #locate(loc => c.at(loc))
])