From f971e96dd515d9f11379cd3ec035535acfcc7588 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Thu, 7 May 2026 15:53:19 -0500 Subject: [PATCH] =?UTF-8?q?fix(parser):=20str=5Fjoin=20separator=20''=20no?= =?UTF-8?q?t=20'=20'=20=E2=80=94=20CSS=20selectors=20were=20emitting=20spa?= =?UTF-8?q?ces=20between=20tokens?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lang/el-compiler/src/parser.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/el-compiler/src/parser.el b/lang/el-compiler/src/parser.el index 8aa4ff6..1e24675 100644 --- a/lang/el-compiler/src/parser.el +++ b/lang/el-compiler/src/parser.el @@ -332,7 +332,7 @@ fn parse_raw_text_content(tokens: [Any], pos: Int, tag_name: String) -> Map Map { } } } - { "text": str_join(parts, " "), "pos": p } + { "text": str_join(parts, ""), "pos": p } } // Parse an attribute list: (attrname | attrname="val" | attrname={expr})* -- 2.52.0