summaryrefslogtreecommitdiffstats
path: root/docs/source/contributing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/source/contributing')
-rw-r--r--docs/source/contributing/index.md12
-rw-r--r--docs/source/contributing/testing.md6
2 files changed, 11 insertions, 7 deletions
diff --git a/docs/source/contributing/index.md b/docs/source/contributing/index.md
index afdead24d..8c07a76b1 100644
--- a/docs/source/contributing/index.md
+++ b/docs/source/contributing/index.md
@@ -3,7 +3,11 @@
Deluge is an open-source project, and relies on its community of users to keep
getting better.
-- [Code contributions](code.md)
-- [Running tests](testing.md)
-- [Documentation contributions](documentation.md)
-- [Translation contributions](translations.md)
+```{toctree}
+:titlesonly:
+
+code
+testing
+documentation
+translations
+```
diff --git a/docs/source/contributing/testing.md b/docs/source/contributing/testing.md
index 8d9d1f31d..4df8ca669 100644
--- a/docs/source/contributing/testing.md
+++ b/docs/source/contributing/testing.md
@@ -38,7 +38,7 @@ Running the tests for a specific plugin (requires [pytest](https://pypi.python.o
All the tests for Deluge can be run using [Tox](https://pypi.python.org/pypi/tox)
-#### See available targets:
+### See available targets:
tox -l
py27
@@ -46,11 +46,11 @@ All the tests for Deluge can be run using [Tox](https://pypi.python.org/pypi/tox
lint
docs
-#### Run specific test:
+### Run specific test:
tox -e py3
-#### Verify code with pre-commit:
+### Verify code with pre-commit:
tox -e lint