aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/main.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2020-09-11 01:07:43 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2020-09-11 01:15:14 +0200
commitff8898476685e6b7dff03231275a6a8bc2cbaf17 (patch)
treeafe908628d29fac856bd246f7959c53e95ccce4f /src/blogc/main.c
parent15264fdb1062cf27be5c103f6bff5df67a7f78dc (diff)
downloadblogc-ff8898476685e6b7dff03231275a6a8bc2cbaf17.tar.gz
blogc-ff8898476685e6b7dff03231275a6a8bc2cbaf17.tar.bz2
blogc-ff8898476685e6b7dff03231275a6a8bc2cbaf17.zip
blogc: generate table of contents tree
this commit allows users to use the `{{ TOCTREE }}` variable in their templates, to get automatically generated table of contents for entries. The variable is binded to each entry, so it can be used in any block that runs in entry context, like `{% block entry %}`. There's a small performance penalty for this, because the table of contents is rendered for any entry, despite being used or not, and not generated on-demand. still missing documentation. tests are good enough.
Diffstat (limited to 'src/blogc/main.c')
-rw-r--r--src/blogc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blogc/main.c b/src/blogc/main.c
index f952957..7024967 100644
--- a/src/blogc/main.c
+++ b/src/blogc/main.c
@@ -307,7 +307,7 @@ main(int argc, char **argv)
listing_entries_source = bc_slist_append(listing_entries_source, NULL);
continue;
}
- bc_trie_t *e = blogc_source_parse_from_file(tmp->data, &err);
+ bc_trie_t *e = blogc_source_parse_from_file(config, tmp->data, &err);
if (err != NULL) {
bc_error_print(err, "blogc");
rv = 1;