From 7cfe7ccc58863dfeaf6ce253848e4858350ca2ec Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Sat, 21 Aug 2021 16:27:08 +0200 Subject: docs: Hook up the new RefMan generator to Meson --- docs/meson.build | 18 +++++++++++++++++- docs/sitemap.txt | 1 + 2 files changed, 18 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/meson.build b/docs/meson.build index 7369335..9bd80ba 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -15,10 +15,25 @@ docs_gen = custom_target( build_by_default: true, install: false) +refman_gen = custom_target( + 'gen_refman', + input: files('sitemap.txt'), + output: 'configured_sitemap.txt', + depfile: 'reman_dep.d', + command: [ + find_program('./genrefman.py'), + '-g', 'md', + '-s', '@INPUT@', + '-o', '@OUTPUT@', + '--depfile', '@DEPFILE@', + '--force-color', + ], +) + hotdoc = import('hotdoc') documentation = hotdoc.generate_doc(meson.project_name(), project_version: meson.project_version(), - sitemap: 'sitemap.txt', + sitemap: refman_gen, build_by_default: true, depends: docs_gen, index: 'markdown/index.md', @@ -30,6 +45,7 @@ documentation = hotdoc.generate_doc(meson.project_name(), git_upload_repository: 'git@github.com:mesonbuild/mesonbuild.github.io.git', edit_on_github_repository: 'https://github.com/mesonbuild/meson', syntax_highlighting_activate: true, + keep_markup_in_code_blocks: true, ) run_target('upload', diff --git a/docs/sitemap.txt b/docs/sitemap.txt index b659a1a..a2790eb 100644 --- a/docs/sitemap.txt +++ b/docs/sitemap.txt @@ -71,6 +71,7 @@ index.md Creating-OSX-packages.md Creating-Linux-binaries.md Project-templates.md + @REFMAN_PLACEHOLDER@ Reference-manual.md Reference-tables.md Style-guide.md -- cgit v1.1