diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 31b9b60..d1666d7 100644 --- a/meson.build +++ b/meson.build @@ -43,6 +43,9 @@ main_template = join_paths(meson.source_root(), 'templates/main.html') rss_gen = join_paths(meson.source_root(), 'tools/rss_gen.py') meta_files = [] lua_env = {'LUA_PATH' : meson.source_root() + '/?.lua' + ';;'} +templates = ['templates/front_page.html', + 'templates/main.html', + 'templates/note.html'] foreach source : source_doc_no_ext source_file = join_paths(src_dir, source + '.md') @@ -73,7 +76,7 @@ foreach source : page_doc_no_ext source_file = join_paths(page_dir, source + '.md') html_file = source + '.html' custom_target(html_file, - input : [main_template, source_file, plantuml], + input : [main_template, source_file, plantuml, templates], output : html_file, command : [pandoc, '-s', '--template', '@INPUT0@', '@INPUT1@', @@ -90,7 +93,7 @@ endforeach # Generate index.html custom_target('index.html', - input : [front_page, main_template, 'main.md', meta_files], + input : [front_page, main_template, 'main.md', meta_files, templates], output : 'index.html', command : [pandoc, '-s', '--lua-filter', '@INPUT0@', '--template', '@INPUT1@', |