summaryrefslogtreecommitdiff
path: root/tests/typ/text/deco.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/text/deco.typ')
-rw-r--r--tests/typ/text/deco.typ85
1 files changed, 0 insertions, 85 deletions
diff --git a/tests/typ/text/deco.typ b/tests/typ/text/deco.typ
deleted file mode 100644
index cc9b9b3a..00000000
--- a/tests/typ/text/deco.typ
+++ /dev/null
@@ -1,85 +0,0 @@
-// Test text decorations.
-
----
-#let red = rgb("fc0030")
-
-// Basic strikethrough.
-#strike[Statements dreamt up by the utterly deranged.]
-
-// Move underline down.
-#underline(offset: 5pt)[Further below.]
-
-// Different color.
-#underline(stroke: red, evade: false)[Critical information is conveyed here.]
-
-// Inherits font color.
-#text(fill: red, underline[Change with the wind.])
-
-// Both over- and underline.
-#overline(underline[Running amongst the wolves.])
-
----
-#let redact = strike.with(stroke: 10pt, extent: 0.05em)
-#let highlight-custom = strike.with(stroke: 10pt + rgb("abcdef88"), extent: 0.05em)
-
-// Abuse thickness and transparency for redacting and highlighting stuff.
-Sometimes, we work #redact[in secret].
-There might be #highlight-custom[redacted] things.
-
----
-// Test stroke folding.
-#set underline(stroke: 2pt, offset: 2pt)
-#underline(text(red, [DANGER!]))
-
----
-// Test highlight.
-This is the built-in #highlight[highlight with default color].
-We can also specify a customized value
-#highlight(fill: green.lighten(80%))[to highlight].
-
----
-// Test default highlight bounds.
-#highlight[ace],
-#highlight[base],
-#highlight[super],
-#highlight[phone #sym.integral]
-
----
-// Test a tighter highlight.
-#set highlight(top-edge: "x-height", bottom-edge: "baseline")
-#highlight[ace],
-#highlight[base],
-#highlight[super],
-#highlight[phone #sym.integral]
-
----
-// Test a bounds highlight.
-#set highlight(top-edge: "bounds", bottom-edge: "bounds")
-#highlight[abc]
-#highlight[abc #sym.integral]
-
----
-// Test highlight radius
-#highlight(radius: 3pt)[abc],
-#highlight(radius: 1em)[#lorem(5)]
-
----
-// Test highlight stroke
-#highlight(stroke: 2pt + blue)[abc]
-#highlight(stroke: (top: blue, left: red, bottom: green, right: orange))[abc]
-#highlight(stroke: 1pt, radius: 3pt)[#lorem(5)]
-
----
-// Test underline background
-#set underline(background: true, stroke: (thickness: 0.5em, paint: red, cap: "round"))
-#underline[This is in the background]
-
----
-// Test overline background
-#set overline(background: true, stroke: (thickness: 0.5em, paint: red, cap: "round"))
-#overline[This is in the background]
-
----
-// Test strike background
-#set strike(background: true, stroke: 5pt + red)
-#strike[This is in the background]