From: Andrea Zagli Date: Mon, 8 Jul 2019 17:39:28 +0000 (+0200) Subject: Tags cannot contain spaces. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=1015aaf8a9f034ac16bff16d6d80e9999eee6eda;p=libzakgorg Tags cannot contain spaces. --- 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);