From 5e08028fb36aa766957cba64c5c665edf9b96fb7 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 21 Mar 2021 17:46:09 +0100 Subject: =?UTF-8?q?Syntax=20functions=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- tests/typ/expr/ops.typ | 3 --- 1 file changed, 3 deletions(-) (limited to 'tests/typ/expr') 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. -- cgit v1.2.3