diff --git a/doc/help/index.asciidoc b/doc/help/index.asciidoc index 56bb3a807..4396b765f 100644 --- a/doc/help/index.asciidoc +++ b/doc/help/index.asciidoc @@ -12,6 +12,7 @@ The following help pages are currently available: * link:commands.html[Documentation of commands] * link:settings.html[Documentation of settings] * link:userscripts.html[How to write userscripts] +* link:CONTRIBUTING.html[Contributing to qutebrowser] Getting help ------------ diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py index 7ef118c4f..dfcb342a3 100755 --- a/scripts/asciidoc2html.py +++ b/scripts/asciidoc2html.py @@ -43,6 +43,7 @@ class AsciiDoc: FILES = [ ('FAQ.asciidoc', 'qutebrowser/html/doc/FAQ.html'), ('CHANGELOG.asciidoc', 'qutebrowser/html/doc/CHANGELOG.html'), + ('CONTRIBUTING.asciidoc', 'qutebrowser/html/doc/CONTRIBUTING.html'), ('doc/quickstart.asciidoc', 'qutebrowser/html/doc/quickstart.html'), ('doc/userscripts.asciidoc', 'qutebrowser/html/doc/userscripts.html'), ]