GRegex *regex_header;
GRegex *regex_tags;
+ GRegex *regex_properties;
+ GRegex *regex_property;
+
GMatchInfo *match_info;
gint rx_start;
gint rx_end;
regex_header = g_regex_new ("[*]+ ", 0, 0, NULL);
regex_tags = g_regex_new (":[^ .]*:$", 0, 0, NULL);
+ regex_properties = g_regex_new ("^[ ]*:PROPERTIES:\n(.*\n)*[ ]*:END:\n", 0, 0, NULL);
+ regex_property = g_regex_new (":[^ .]*:.*", 0, 0, NULL);
root = g_node_get_root (zak_gorg_parser->nodes);
}
else
{
+ /* check if there are properties */
+ if (cur != NULL && ((Header *)cur->data)->body != NULL)
+ {
+ g_regex_match (regex_properties, ((Header *)cur->data)->body->str, 0, &match_info);
+
+ if (g_match_info_fetch (match_info, 0) != NULL)
+ {
+ g_warning ("PROP %s", g_match_info_fetch (match_info, 0));
+ }
+
+ g_match_info_free (match_info);
+ }
+
+
Header *h = g_new0 (Header, 1);
h->body = NULL;
for (l = 0; l < strlen (lines[i]); l++)
cur = cur->parent;
}
}
+
g_node_append (cur, n);
cur = n;
}