Hashar has uploaded a new change for review. https://gerrit.wikimedia.org/r/174093
Change subject: Use README.md as doxygen main page ...................................................................... Use README.md as doxygen main page From doxygen documentation: http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_use_mdfile_as_mainpage USE_MDFILE_AS_MAINPAGE If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that is part of the input, its contents will be placed on the main page (index.html). This can be useful if you have a project on for instance GitHub and want to reuse the introduction page also for the doxygen output. Bug: 73530 Change-Id: I812a32f0bd11f05aa10a73db334bccd49875adca --- M Doxyfile 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/cdb refs/changes/93/174093/1 diff --git a/Doxyfile b/Doxyfile index 95de898..e77e75a 100644 --- a/Doxyfile +++ b/Doxyfile @@ -10,9 +10,11 @@ WARN_NO_PARAMDOC = YES -INPUT = src/ +INPUT = README.md src/ FILE_PATTERNS = *.php RECURSIVE = YES +# Requires doxygen 1.8.3+ +USE_MDFILE_AS_MAINPAGE = README.md HTML_DYNAMIC_SECTIONS = YES GENERATE_TREEVIEW = YES -- To view, visit https://gerrit.wikimedia.org/r/174093 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I812a32f0bd11f05aa10a73db334bccd49875adca Gerrit-PatchSet: 1 Gerrit-Project: cdb Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
