diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-29 21:41:10 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-29 21:41:10 -0400 |
commit | f4ab531029fabaf0901e35808a1d5088869410c5 (patch) | |
tree | 24fd960b355388b5e37bbba84d41008f9583d93b /src/template.c | |
parent | 7c7d40dc682668a545ffd32fb3865b05ebe41eb3 (diff) |
engine: handle config.cfg source for eachdo
Diffstat (limited to 'src/template.c')
-rw-r--r-- | src/template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/template.c b/src/template.c index c228ffe..ee15516 100644 --- a/src/template.c +++ b/src/template.c @@ -205,7 +205,7 @@ template_write(engine_t *engine, FILE *f, void *doc, bool is_markdown) list_t *atoms = list_create(sizeof(ptr_wrapper_t)); list_t *directives = lex(operands->content); - handle_page_source(atoms, operands, directives, engine->config); + handle_config_source(atoms, operands, directives, engine->config); for (size_t i = 0; i < atoms->size; i++) { atom_t *atom = list_get(atoms, i); |