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);
+ regex_properties = g_regex_new ("^[ ]*:PROPERTIES:\n((.*\n)*)[ ]*:END:\n", 0, 0, NULL);
+ regex_property = g_regex_new ("^[ ]*:[^ .]*:.*\n$", 0, 0, NULL);
root = g_node_get_root (zak_gorg_parser->nodes);
if (g_match_info_fetch (match_info, 0) != NULL)
{
- g_warning ("PROP %s", g_match_info_fetch (match_info, 0));
+ gchar **props;
+ guint f;
+
+ g_warning ("PROPS %s", g_match_info_fetch (match_info, 0));
+
+ props = g_strsplit (g_match_info_fetch (match_info, 1), "\n", -1);
+
+ f = g_strv_length (props);
+ for (l = 0; l < f; l++)
+ {
+ g_warning ("PROP %s", props[l]);
+ }
}
g_match_info_free (match_info);
g_regex_unref (regex_header);
g_regex_unref (regex_tags);
+ g_regex_unref (regex_properties);
+ g_regex_unref (regex_property);
}