๐ Guidelines
You need to follow these rules in order to contribute to the docs. They are important for a good user experience and provide a consistent baseline for other contributors to work with.
Links๐
Internal๐
Links to internal pages can be opened in the same tab. This works with the normal markdown link syntax:
1 |
|
External๐
Links to external sites must be opened in new tabs using this html code:
1 |
|
Displaying (YAML) code๐
You must use codeboxes with the specific language set in the header (YAML
in this example).
You also have to enable line numbers by adding the linenums="1"
argument.
1 2 3 |
|
Result:
1 |
|
Refering to YAML elements in written text๐
An example of this would be to reference an event name in an explanation.
1 |
|
Result:
The event someEvent
prints a message to the player!
File names๐
Replace all spaces in file and folder names with -
!
Lists๐
Lists must be declared as such:
* Top Level
- Second Level
- Second Level
* Another Top level
Result:
- Top Level
- Second Level
- Second Level
- Another Top level
Line length๐
A single line may only have 170 characters. Please wrap at 121 though.