From d7424d40aa963e47d3224b81ccf41c4f8669617d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 10 Jan 2020 13:27:24 -0500 Subject: Support boolean attributes For example, script[src defer.] expands to . This notation is not documented in the cheet sheet, but you can use it in the playground. We should support boolean attributes for the other filters as well, say, haml. --- src/test.el | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/test.el') diff --git a/src/test.el b/src/test.el index 913daca..ddc7e40 100644 --- a/src/test.el +++ b/src/test.el @@ -278,12 +278,16 @@ (define-emmet-transform-html-test-case Properties "a[x]" ("") + "a[x.]" ("") "a[x=]" ("") "a[x=\"\"]" ("") "a[x=y]" ("") "a[x=\"y\"]" ("") "a[x=\"()\"]" ("") "a[x m]" ("") + "a[x. m]" ("") + "a[x m.]" ("") + "a[x. m.]" ("") "a[x= m=\"\"]" ("") "a[x=y m=l]" ("") "a/[x=y m=l]" ("") -- cgit v1.2.3