From 1015aaf8a9f034ac16bff16d6d80e9999eee6eda Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 8 Jul 2019 19:39:28 +0200 Subject: [PATCH] Tags cannot contain spaces. --- src/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.c b/src/parser.c index 4d79879..be59f18 100644 --- a/src/parser.c +++ b/src/parser.c @@ -257,7 +257,7 @@ zak_gorg_parser_parse (ZakGorgParser *zak_gorg_parser) gchar *str = buffer; - regex = g_regex_new (":.*:$", 0, 0, NULL); + regex = g_regex_new (":[^ .]*:$", 0, 0, NULL); root = g_node_get_root (zak_gorg_parser->nodes); -- 2.49.0