aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c
index 65e45ee..3dbf325 100644
--- a/src/main.c
+++ b/src/main.c
@@ -12,16 +12,18 @@
#include <stdio.h>
-#include "template-grammar.h"
+#include "source-grammar.h"
int
main(int argc, char **argv)
{
- b_slist_t *t = blogc_template_parse(
- "<html>{{ BOLA }}</html>\n"
- "{% block single_source %}\n");
- printf("%s\n", (char*) ((blogc_template_stmt_t*)t->next->next->next->data)->value);
+ blogc_source_t *t = blogc_source_parse(
+ "\n \nBOLA: guda\n\t\n\n\n\n"
+ "CHUNDA: asd\n"
+ "----\n"
+ "{% block single_source %}\nbola\n\nzas\n");
+ printf("%s\n", t->content);
printf("Hello, World!\n");
return 0;
}