summaryrefslogtreecommitdiff
path: root/tests/typ/text
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-08-30 15:00:18 +0200
committerLaurenz <laurmaedje@gmail.com>2022-09-07 11:07:17 +0200
commit0d12f2ab23177642eef2e6bb9c583cdd0c743b33 (patch)
tree03a88594081dcf360d0d880167feb1debca970e6 /tests/typ/text
parent0cb876ebf9138c1ee3b3c87165952a73569ffb28 (diff)
[WIP] Label and reference syntax
Diffstat (limited to 'tests/typ/text')
-rw-r--r--tests/typ/text/escape.typ4
-rw-r--r--tests/typ/text/raw.typ10
2 files changed, 7 insertions, 7 deletions
diff --git a/tests/typ/text/escape.typ b/tests/typ/text/escape.typ
index e03d73e5..ccaf78e9 100644
--- a/tests/typ/text/escape.typ
+++ b/tests/typ/text/escape.typ
@@ -3,10 +3,10 @@
---
// Escapable symbols.
\\ \/ \[ \] \{ \} \# \* \_ \
-\= \~ \` \$ \" \'
+\= \~ \` \$ \" \' \< \> \@
// No need to escape.
-( ) ; < >
+( ) ;
// Unescapable.
\a \: \; \( \)
diff --git a/tests/typ/text/raw.typ b/tests/typ/text/raw.typ
index cf497d75..c17c8fec 100644
--- a/tests/typ/text/raw.typ
+++ b/tests/typ/text/raw.typ
@@ -31,11 +31,11 @@ Text
The keyword ```rust let```.
// Trimming depends on number backticks.
-<``> \
-<` untrimmed `> \
-<``` trimmed` ```> \
-<``` trimmed ```> \
-<``` trimmed```>
+(``) \
+(` untrimmed `) \
+(``` trimmed` ```) \
+(``` trimmed ```) \
+(``` trimmed```) \
---
// First line is not dedented and leading space is still possible.