Contributing to the Wiki: Difference between revisions
m Fix closing "pre" tag |
→Contributing: How to create a wiki account (for now) |
||
Line 5: | Line 5: | ||
Before editing a file, please read our [[:Style_Guide|Documentation Style Guide]], to help us maintain consistency across user guidance documentation. | Before editing a file, please read our [[:Style_Guide|Documentation Style Guide]], to help us maintain consistency across user guidance documentation. | ||
Currently, you need to [https://helionet.org/index/forum/45-customer-service/?do=add request to have a wiki account created for you]. We hope to have self-service wiki account creation implemented soon. | |||
Once you have a wiki account, login to the account, find the file you would like to edit, and then edit it. | |||
== Formatting Hints == | == Formatting Hints == |
Latest revision as of 00:21, 11 February 2025
Contributing
We welcome contributions to our community powered Wiki
Before editing a file, please read our Documentation Style Guide, to help us maintain consistency across user guidance documentation.
Currently, you need to request to have a wiki account created for you. We hope to have self-service wiki account creation implemented soon.
Once you have a wiki account, login to the account, find the file you would like to edit, and then edit it.
Formatting Hints
Use MediaWiki's Text Formatting Guide, their Cheatsheet, and their Image Guide for screenshots.
Headers
Using H2 headers for title sections can be done with the following code:
== Title Section ==
Info
{{Info|this is info text}}
Caution
{{Caution|this is Caution text}}
Danger
{{Danger|this is danger text}}
Tables
This code:
{| class="wikitable" style="margin:auto" |+ style="caption-side:top; |'''Table Caption''' |- ! Header 1 !! Header 2 !! Header 3 |- | Cell 1 || Cell 2 || Cell 3 |- | [https://heliohost.org Link 1] || [https://heliohost.org Link 2] || [https://heliohost.org Link 3] |}
Will display as:
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Link 1 | Link 2 | Link 3 |
Code
Inline Code
For inline code, use <code>
and </code>
This syntax:
<code>sudo whoami</code>
Will display as:
sudo whoami
Code Blocks
For code blocks, use <pre>
and </pre>
This syntax:
<pre> #!/usr/bin/python3.12 print("Content-Type: text/html\n\n") print("Heliohost rules!") </pre>
Will display as:
#!/usr/bin/python3.12 print("Content-Type: text/html\n\n") print("Heliohost rules!")
Special Characters
To show <
and >
in plain text instead of having them interpreted as tags, use <
for <
and >
for >
.
Other Ways to Help
There are many other ways you can help us keep improving. Learn how you can contribute to our community on our How You Can Help page.