summaryrefslogtreecommitdiff
path: root/tests/typ/text
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/text')
-rw-r--r--tests/typ/text/raw-align.typ37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/typ/text/raw-align.typ b/tests/typ/text/raw-align.typ
new file mode 100644
index 00000000..2e124ea9
--- /dev/null
+++ b/tests/typ/text/raw-align.typ
@@ -0,0 +1,37 @@
+// 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 alignment must be horizontal
+#set raw(align: top)