GNode *root;
GNode *cur;
- GRegex *regex;
+ GRegex *regex_header;
+ GRegex *regex_tags;
GMatchInfo *match_info;
gint rx_start;
gint rx_end;
gchar *str = buffer;
- regex = g_regex_new (":[^ .]*:$", 0, 0, NULL);
+ regex_header = g_regex_new ("[*]+ ", 0, 0, NULL);
+ regex_tags = g_regex_new (":[^ .]*:$", 0, 0, NULL);
root = g_node_get_root (zak_gorg_parser->nodes);
g_printf ("%d: %s\n", line, strline);
start = i + 1;
- g_regex_match (regex, strline, 0, &match_info);
-
- if (strline[0] != '*')
+ if (!g_regex_match (regex_header, strline, 0, &match_info))
{
Header *h = (Header *)cur->data;
if (h->body == NULL)
}
}
+ g_regex_match (regex_tags, strline, 0, &match_info);
+
rx_start = 0;
h->tags = g_match_info_fetch (match_info, 0);
if (h->tags != NULL)
g_object_unref (ginfo);
g_object_unref (giostream);
- g_regex_unref (regex);
+ g_regex_unref (regex_header);
+ g_regex_unref (regex_tags);
}