aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contributing-to-the-wiki.md
diff options
context:
space:
mode:
authorLMBishop <13875753+LMBishop@users.noreply.github.com>2023-07-05 20:54:36 +0100
committerLMBishop <13875753+LMBishop@users.noreply.github.com>2023-07-05 20:54:36 +0100
commit467715dcb3ee23e05e8fe445d9e2a2416a26a8e0 (patch)
treeeb1e61d15312f931b6f61d104dd63614a2620db4 /docs/contributing-to-the-wiki.md
parent7e2e0f3c373c2108b8b3903675eac950b0e21307 (diff)
Migrate docs to GitHub pages
Diffstat (limited to 'docs/contributing-to-the-wiki.md')
-rw-r--r--docs/contributing-to-the-wiki.md58
1 files changed, 58 insertions, 0 deletions
diff --git a/docs/contributing-to-the-wiki.md b/docs/contributing-to-the-wiki.md
new file mode 100644
index 00000000..7a7a3c52
--- /dev/null
+++ b/docs/contributing-to-the-wiki.md
@@ -0,0 +1,58 @@
+---
+title: Contributing to the wiki
+nav_order: 10
+---
+
+# Contributing to the wiki
+
+{: .caution }
+This information is out of date since the wiki migration.
+
+If you spot any errors in the wiki, or want to add more information of
+you own, then we would be happy to review potential changes. Due to the
+restrictions of the GitHub wiki pages, it is not possible to open pull
+requests to the wiki repository, instead changes will have to be
+submitted through the [on the issue
+tracker](https://github.com/LMBishop/Quests/issues/new?assignees=&labels=docs%2Cstatus%3A+needs+investigating&template=documentation.yml).
+
+## Submitting edits
+
+If you want to add information or edit the wiki, it would be beneficial
+if you submitted the source code of the page within backticks to make it
+easy to change the wiki.
+
+You can view the raw source code of a wiki page by adding `.mediawiki`
+to the url, for example:
+[`https://github.com/LMBishop/Quests/wiki/Storage-providers.mediawiki`](https://github.com/LMBishop/Quests/wiki/Storage-providers.mediawiki).
+**Note that some pages are edited using Markdown, if `.mediawiki` does
+not resolve then use `.md` instead. These pages do not use Wikitext but
+will soon be converted to it.**
+
+Please make your edits to the page there, and submit the **full page**
+in the issue tracker. Due to constraints of the GitHub wiki, there is no
+way to easily submit revisions for review.
+
+## Editing guidelines
+
+The Quests wiki loosely follows some conventions:
+
+- Article titles and headers should be written in lower case, with only
+ the first word being capitalised. The only exception to this is with
+ names (e.g. PlaceholderAPI, AnimatedScoreboard).
+- Headings should not used to restate the page name. Pages usually open
+ with a short description at the top, they should never start with
+ another heading.
+- British English should be used.
+- Top-level headings should start at H2 (`## Heading` or
+ `== Heading ==`). H1 (`# Heading` or `= Heading =`) is never used as
+ this conflicts with the article title. The only exception to this is
+ on the home page, where the plugin name is displayed.
+- Longer articles should have their contents listed at the top, with
+ wikilinks to each section of the page.
+- Incomplete pages should have a warning at the top saying so. GitHub
+ wikis have no support for templates, or for transclusion, so you must
+ copy it manually from a different wiki page.
+
+These conventions may or may not be wholly followed throughout the wiki,
+though it would be beneficial for new pages and new revisions to follow
+this convention.