summaryrefslogtreecommitdiff
path: root/tests/typ/text/raw-align.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/text/raw-align.typ')
-rw-r--r--tests/typ/text/raw-align.typ37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/typ/text/raw-align.typ b/tests/typ/text/raw-align.typ
deleted file mode 100644
index 1dbaad16..00000000
--- a/tests/typ/text/raw-align.typ
+++ /dev/null
@@ -1,37 +0,0 @@
-// Test the alignment of text inside of raw blocks.
-
----
-// Text inside raw block should be unaffected by outer alignment by default.
-#set align(center)
-#set page(width: 180pt)
-#set text(6pt)
-
-#lorem(20)
-
-```py
-def something(x):
- return x
-
-a = 342395823859823958329
-b = 324923
-```
-
-#lorem(20)
-
----
-// Text inside raw block should follow the specified alignment.
-#set page(width: 180pt)
-#set text(6pt)
-
-#lorem(20)
-#align(center, raw(
- lang: "typ",
- block: true,
- align: right,
- "#let f(x) = x\n#align(center, line(length: 1em))",
-))
-#lorem(20)
-
----
-// Error: 17-20 expected `start`, `left`, `center`, `right`, or `end`, found top
-#set raw(align: top)