This is an old revision of the document!
Table of Contents
Moxiecraft Wiki Style Guide
Conversion to a style guide in progress! For syntax reference, use the built in DokuWiki syntax page!
Learn how to format pages on the Moxiecraft Wiki using DokuWiki syntax.
Headings
Headings use equal signs (`=`). More equal signs create bigger headings (unlike MediaWiki, where more equal signs create smaller headings).
====== Heading Level 1 ====== ===== Heading Level 2 ===== === Heading Level 3 ===
gives
Heading Level 1
Heading Level 2
Heading Level 3
Text Formatting
- Bold: Use `text`
Example: Bold
- Italic: Use `text`
Example: Italic
- Underline: Use `text`
Example: Underline
Lists
Bullet Points
Use an asterisk `*` for bullet points. For subpoints, add spaces before the `*`.
- Main Point
- Subpoint
- Another Subpoint
Numbered Lists
Use a dash and a period `-.` for numbered lists.
- . First Item
- . Second Item
- . Third Item
Links
Internal Links
External Links
Paste the URL or use square brackets with optional text.
https://moxiecraft.org [[https://moxiecraft.org|Moxiecraft Website]]
Images
Insert images using {{image.jpg}}. Resize with `?WIDTHxHEIGHT`.
{{example.jpg}} {{example.jpg?200x200}}
Tables
Tables use `^` for headers and `|` for rows.
^ Header 1 ^ Header 2 ^ Header 3 ^ | Row 1 | Data 1 | Data 2 | | Row 2 | Data A | Data B |
Header 1 | Header 2 | Header 3 |
---|---|---|
Row 1 | Data 1 | Data 2 |
Row 2 | Data A | Data B |
Horizontal Lines
Use four dashes `—-` to create a horizontal line.
Block Quotes
Start a line with `>` to create a block quote.
This is a blockquote.
Code Blocks
Use <code>(content)</code> or double spaces at the beginning of a line (` `) to create code blocks.
This is a code block. Here, [[start|links]] do not apply.
Forced Line Breaks
You can put double slashes (`//`) at the end of a line or with a space afterwards to force a line break.
This is some text with some linebreaks\\ Note that the two backslashes are only recognized at the end of a line\\ or followed by\\ a whitespace \\this happens without it.
This is some text with some linebreaks
Note that the
two backslashes are only recognized at the end of a line
or followed by
a whitespace \\this happens without it.
Prevent Wiki Formatting
If you do not want wiki formatting to happen, you can either put it into code blocks (as seen previously) or put it inside <nowiki></nowiki> marks to have the text look normal. You can see examples of this all around this very page.
—
This guide covers the basics for formatting Moxiecraft Wiki pages. Happy editing!