]> saetta.ns0.it Git - libzakgorg/commitdiff
Lines that don't start with * are body part of the header.
authorAndrea Zagli <azagli@libero.it>
Sat, 3 Aug 2019 08:13:58 +0000 (10:13 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 3 Aug 2019 08:13:58 +0000 (10:13 +0200)
src/parser.c
tests/simple.org

index be59f18c22762e9b7109391e139cbe8226f6d594..ace8ce68b653f1c63beaf583753520269bcbb54c 100644 (file)
@@ -57,6 +57,7 @@ typedef struct
                guint level;
                gchar *str;
                gchar *tags;
+               GString *body;
        } Header;
 
 static void
@@ -189,6 +190,10 @@ traverse_func (GNode *node,
                {
                        g_printf ("\tTAGS %s\n", h->tags);
                }
+       if (h->body != NULL)
+               {
+                       g_printf ("\tBODY %s", h->body->str);
+               }
 
        return FALSE;
 }
@@ -275,52 +280,65 @@ zak_gorg_parser_parse (ZakGorgParser *zak_gorg_parser)
 
                                        g_regex_match (regex, strline, 0, &match_info);
 
-                                       Header *h = g_new0 (Header, 1);
-                                       for (l = 0; l < i - start; l++)
+                                       if (strline[0] != '*')
                                                {
-                                                       if (strline[l] == ' ')
+                                                       Header *h = (Header *)cur->data;
+                                                       if (h->body == NULL)
                                                                {
-                                                                       h->level = l;
-                                                                       break;
+                                                                       h->body = g_string_new ("");
                                                                }
-                                               }
-
-                                       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 + h->level + 1, rx_start - (h->level + 1));
+                                                       g_string_append_printf (h->body, "%s\n", strline);
                                                }
                                        else
                                                {
-                                                       h->str = g_strdup (strline + h->level + 1);
-                                               }
-                                       g_strstrip (h->str);
+                                                       Header *h = g_new0 (Header, 1);
+                                                       h->body = NULL;
+                                                       for (l = 0; l < i - start; l++)
+                                                               {
+                                                                       if (strline[l] == ' ')
+                                                                               {
+                                                                                       h->level = l;
+                                                                                       break;
+                                                                               }
+                                                               }
 
-                                       g_match_info_free (match_info);
-                                       g_free (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);
+                                                               }
 
-                                       GNode *n = g_node_new (h);
+                                                       if (rx_start > 0)
+                                                               {
+                                                                       h->str = g_strndup (strline + h->level + 1, rx_start - (h->level + 1));
+                                                               }
+                                                       else
+                                                               {
+                                                                       h->str = g_strdup (strline + h->level + 1);
+                                                               }
+                                                       g_strstrip (h->str);
 
-                                       if (h->level == 0)
-                                               {
-                                                       cur = root;
-                                               }
-                                       else
-                                               {
-                                                       Header *hcur = (Header *)cur->data;
-                                                       if (h->level == hcur->level)
+                                                       g_match_info_free (match_info);
+                                                       g_free (strline);
+
+                                                       GNode *n = g_node_new (h);
+
+                                                       if (h->level == 0)
+                                                               {
+                                                                       cur = root;
+                                                               }
+                                                       else
                                                                {
-                                                                       cur = cur->parent;
+                                                                       Header *hcur = (Header *)cur->data;
+                                                                       if (h->level == hcur->level)
+                                                                               {
+                                                                                       cur = cur->parent;
+                                                                               }
                                                                }
+                                                       g_node_append (cur, n);
+                                                       cur = n;
                                                }
-                                       g_node_append (cur, n);
-                                       cur = n;
                                }
                }
 
index 1cbfd2bc121729075107d9455d92014d1ac2e15c..3e70bf813f623070b034d8f6d0c675eea8c972ef 100644 (file)
@@ -1,7 +1,10 @@
 * first line                                                          :first:
 ** sub 1 first line                                          :tag1:tag2:tag3:
+body with no space
 ** sub 2 first line
 * second line                                                          :tag1:
+  the body of the second line
+  it's multiline body
 *** sub 1 sub 1 second line (without parent)
 * third line                                                     :third:line:
 ** sub 1 :third (no tag): line