{
guint level;
gchar *str;
+ gchar *tags;
} Header;
static void
traverse_func (GNode *node,
gpointer data)
{
- g_printf ("%d: %s\n", g_node_depth (node), ((Header *)node->data)->str);
+ Header *h = (Header *)node->data;
+
+ g_printf ("%d: %s\n", g_node_depth (node), h->str);
+ if (h->tags != NULL)
+ {
+ g_printf ("\tTAGS %s\n", h->tags);
+ }
return FALSE;
}
GNode *root;
GNode *cur;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ gint rx_start;
+ gint rx_end;
+
gchar *strline;
error = NULL;
gchar *str = buffer;
+ regex = g_regex_new (":.*:$", 0, 0, NULL);
+
root = g_node_get_root (zak_gorg_parser->nodes);
start = 0;
g_printf ("%d: %s\n", line, strline);
start = i + 1;
+ g_regex_match (regex, strline, 0, &match_info);
+
Header *h = g_new0 (Header, 1);
for (l = 0; l < i - start; l++)
{
break;
}
}
- h->str = g_strdup (strline);
+
+ rx_start = 0;
+ h->tags = g_match_info_fetch (match_info, 0);
+ if (h->tags != NULL)
+ {
+ g_match_info_fetch_pos (match_info, 0, &rx_start, NULL);
+ }
+
+ if (rx_start > 0)
+ {
+ h->str = g_strndup (strline, rx_start);
+ }
+ else
+ {
+ h->str = g_strdup (strline);
+ }
+ g_strstrip (h->str);
+
+ g_match_info_free (match_info);
+ g_free (strline);
GNode *n = g_node_new (h);
g_free (buffer);
g_object_unref (ginfo);
g_object_unref (giostream);
+
+ g_regex_unref (regex);
}
-* first line
-** sub 1 first line
+* first line :first:
+** sub 1 first line :tag1:tag2:tag3:
** sub 2 first line
-* second line
+* second line :tag1:
*** sub 1 sub 1 second line (without parent)
-* third line
-** sub 1 third line
+* third line :third:line:
+** sub 1 :third (no tag): line
*** sub 1 sub 1 third line