How to Edit This Wiki

This wiki is an ikiwiki instance. Files are checked into git for backend storage, using git to clone the repository and then committing and pushing files.

This Summer Camp Island wiki is a project hosted on Codeberg. Anyone may send patches to update the information on the wiki. Trusted active editors to this wiki will be given commit access to the repository.

Format and style

The pages are written in Ikiwiki Markdown format, for details see formatting.

The files use the .mdwn extension.

First, the wiki configuration needs to be generated(feel free to customise it!): https://ikiwiki.info/setup/

It's highly recommended to use these plugins in addition to the ones enabled by default:

The name of the wiki should be 'sumcamisl', unless you want to pick a different name for it. Ikiwiki will have generated a brand new wiki, but it will be replaced with this project's wiki by running the commands below:

rm -rf sumcamisl
git clone https://codeberg.org/AwesomeAdam54321/sumcamisl

# Enter the sumcamisl directory
cd sumcamisl

The wiki can be built from scratch using the following command:

make all

In the local cloned sandbox working copy make whatever changes you want to make. Add them, then commit them. For example, editing this file would be this sequence:

$EDITOR CONTRIBUTING.mdwn
git add CONTRIBUTING.mdwn
git commit

The changes can be previewed by running the following command and browsing the local wiki(at the destdir) using a web browser:

make

As a guideline, commits should be clean following the same rules one would follow when committing to any project. The most recent commit can be formatted as a patch like so:

git format-patch HEAD~1

Patches can be emailed to the wiki's maintainer.

See also ikiwiki.