From 5878cd37fa0047eba63acdbedb65c600bb40556e Mon Sep 17 00:00:00 2001 From: Patric Schmitz Date: Wed, 10 Feb 2016 18:37:46 +0100 Subject: [PATCH] add CONTRIBUTING to index and asciidoc2html.py --- doc/help/index.asciidoc | 1 + scripts/asciidoc2html.py | 1 + 2 files changed, 2 insertions(+) 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'), ]