From ffa9fb9e7b54693f136a900f674212f48839b35c Mon Sep 17 00:00:00 2001 From: Don Cross Date: Sun, 26 May 2019 10:31:03 -0400 Subject: [PATCH] Fixed #14 - 'Generated by Moxygen' link now works. Now the Generated by Moxygen link at the bottom of the Markdown file points to the GitHub repo. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index fca68cf..c316929 100644 --- a/index.js +++ b/index.js @@ -116,7 +116,7 @@ module.exports = { if (!options.noindex) compounds.unshift(root); // insert root at top if index is enabled var contents = templates.renderArray(compounds); - contents.push('Generated by [Moxygen](https://sourcey.com/moxygen)') + contents.push('Generated by [Moxygen](https://github.com/sourcey/moxygen)') helpers.writeCompound(root, contents, doxyparser.references, options); }