summaryrefslogtreecommitdiff
path: root/tests/typ/expr
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-03-21 17:46:09 +0100
committerLaurenz <laurmaedje@gmail.com>2021-03-21 17:50:56 +0100
commit5e08028fb36aa766957cba64c5c665edf9b96fb7 (patch)
tree912799dad3c1e25b7032f3e3bee009537c6f555b /tests/typ/expr
parent898728f260923a91444eb23b522d0abf01a4299b (diff)
Syntax functions 🚀
This adds overridable functions that markup desugars into. Specifically: - \ desugars into linebreak - Two newlines desugar into parbreak - * desugars into strong - _ desugars into emph - = .. desugars into heading - `..` desugars into raw
Diffstat (limited to 'tests/typ/expr')
-rw-r--r--tests/typ/expr/ops.typ3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/typ/expr/ops.typ b/tests/typ/expr/ops.typ
index 2390b7b4..ef249c43 100644
--- a/tests/typ/expr/ops.typ
+++ b/tests/typ/expr/ops.typ
@@ -122,10 +122,7 @@
#test((1, 2, 3) == (1, 2.0) + (3,), true)
#test((:) == (a: 1), false)
#test((a: 2 - 1.0, b: 2) == (b: 2, a: 1), true)
-#test([*Hi*] == [*Hi*], true)
-
#test("a" != "a", false)
-#test([*] != [_], true)
---
// Test comparison operators.