Editing Guide
This wiki setup is still a draft, so do bear in mind things that you find challenging and they’ll come under the discussion of what wiki setup to use going forward.
First, make a GitHub account, then create a fork of the main repository. On this fork, you will have full editing powers and can try out stuff without it impacting the main site.
Edit the site here
View the site here
If you want to instead edit the site using a tool like VS Code, you will need to clone the repository and set it up for local development. Follow the short guide in the README for more information.
Edit Workflow
To edit the wiki:
- Navigate to the page you want to edit on the edit website, and click the pencil.
- Type in the “Edit File” tab, and see a preview in the “Preview” tab.
- Save your changes by typing an edit summary and optional detailed summary, then with the “commit directly” bullet selected, click “Commit changes”.
- If you want to confirm your changes on the live (reading) website, wait ~3 mins for it to update.
Iterative Work
You can make as many edits as you like, but the delay for the live site to rebuild is a downside of this setup. The preview tab is a reasonably accurate live view of the changes, but some stuff can get messed up and need formatting fixes down the line (which a more technical editor can take care of and might not be the main editor’s responsibility).
Syntax
There are two kinds of syntax used:
- The basic Markdown syntax for day-to-day edits, which supports adding in snippets of HTML.
- The extended Markdown that provides stuff like metadata for the page (title, menu order etc.), video embeds and such like.
The latter is there and shows up in the preview as broken, but renders correctly on the real thing. You can just safely ignore it, and if the real thing breaks, someone else can fix it. Examples of extended Markdown that’s broken in preview but works on the real thing:
Basic Markdown Guide
An important part of this setup is that basic Markdown is very simple, just an extension of Discord syntax. Here’s a guide; edit this page to see the source code for these examples.
1. A double newline will give a paragraph break. A single newline does nothing (except makes the Markdown itself easier to read). If you want a line break, add two spaces to the end of that line.
Like this.
2. Bold is given by **bold**
, Italic by *italic*
. I think underline requires HTML (unfortunately) – it’s given by <u>underline</u>
. Colored text doesn’t work.
3. Code blocks like the ones in the previous point are given by backticks
. Triple backtick gives multiline blocks.
This is a multiline block.
Line 2 of the multiline block.
4. Sections are structured by prepending # symbols – # Title
, ## Section
, ### Subsection
etc.
5. Lists can be created by starting lines with *
or -
, and numbered lists by 1.
, 2.
etc. The actual numbers typed don’t make a difference; it auto-numbers them. But sometimes that breaks (like if there are many paragraphs in a list entry) and manually overriding numbering by typing 1\.
, 2\.
etc. does the trick. Examples:
- Bulleted
- List
- Numbered
- List
6. URLs are given by [link name](link address)
, like this. Images are embedded by 
, like:
See the section below on how to upload images into the wiki itself to be stored locally.
Markdown by default renders large images that are left-aligned, but html can be used to refine that with a maximum width and centre-alignment, e.g.
<p align="center"><img src="/sms-guide/assets/task/s05t10-1.png" width="300"></p>
7. Indentation of lines can only be done manually by pasting in special whitespace characters:
This line is indented by 4 en-spaces.
Don’t indent anything by 4 or more normal spaces–it’ll trigger a multiline code block.
Embedding local images
- It is better to store images for the wiki inside the wiki’s files itself, instead of uploading them to an external service like Imgur. This will avoid links breaking at some point in the future if the owner or the service deletes them.
- Local images must be stored in a folder without an underscore in order to be accessible on the published version of the wiki. The folder
/sms-guide/assets/
has been created for this purpose. - In order to better organize images in the
assets
folder, subfolders should be created for each page or group of pages. To make a new folder, you must temporarily make a new text file. In the file name field, type the desired folder name with a forward slash at the end, and the new folder will pop in. Then just name the temporary file something liketemp.md
. Upload your images to the new folder, then delete the temporary file. - Images must be linked to with their absolute path, starting with the repo name
/sms-guide
. - Important: Images will look like they’re not working in the GitHub editor’s “preview” tab, but they will work on the published wiki. Don’t change the path to get them to work in the preview tab, because that will probably break the published version.
Extended Markdown Guide
Basic Markdown is simple but scrappy, and doesn’t support stuff like video embeds for example. You can copy examples to get those working if you fancy. There are 2 main things whose existence you should note, whether you try to use them or not:
Macros (e.g. Video Embed)
The {% %}
stuff is macros for including bits of HTML (that, say, handle video embeds) in a clean way. This is the current setup for YouTube embeds:
{% include yt.html id="oudZMniib08" %}
The {: }
stuff is iirc custom features provided by the website theme, like tables of contents ({:toc}
).
Front-Matter (for Page Metadata)
The top of each page has ---
blocks, like:
---
layout: default
title: Events
permalink: /events
nav_order: 6
---
This doesn’t render correctly in the preview so can take some patience to fiddle with and can be ignored by regular editors. But it basically gives pages titles, layout templates, positions in the menu, and urls.
Folder Structure
For specific episode shines, the format should be:
/shines/[world]/episode[x].md
for episodes.
Once we get to 100 coins and secret shines, we’ll figure out a better system :)