Editing using the Raw file editor
Open the Editor UI and navigate to the pages
folder.
Each page is a Markdown file. Markdown is a lightweight way of writing documents using a content-first approach, without worrying about formatting.
Editing an existing page
Just open a file and edit it.
Creating a new page
Create a new file in the pages
folder. It should have the .markdown
extension and the name should only contain lowercase alphanumeric characters and dashes. Open the file and paste the markdown header. This header contains your page’s true title (that will be displayed on the Wiki).
---
title: Your page's awesome title
layout: page
---
Markdown Syntax
Headings
# H1
## H2
### H3
#### H4
##### H5
###### H6
H1
H2
H3
H4
H5
H6
Bold, italic and striketrough
This text is *italic*
This text is **bold**
This text is ***bold and italic***
This text is ~~striketrough~~
This text is ~~more ***complex***~~
This text is italic
This text is bold
This text is bold and italic
This text is striketrough
This text is more complex
Links
[Clockworks Website](https://clockworks.ro)
Images
To use an image, first upload it in the pages
folder. Then insert it into the document with the following syntax:

Code blocks
Inline code blocks can be defined by surrounding the content with backticks:
use the `filesystems.addSharedOwner(this);` method
use the filesystems.addSharedOwner(this);
method
Code blocks are surrounded by three backticks:
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```
No language highlighting here
```
var s = "JavaScript syntax highlighting";
alert(s);
No language highlighting here
Tables
Colons can be used to align columns. There must be at least 3 dashes separating each header cell. The outer pipes (|
`) are optional, and you don’t need to make the raw Markdown line up prettily. You can also use inline Markdown.
| Tables | Are | Cool |
| ------------- |\:-------------\:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Markdown | Less | Pretty |
---|---|---|
Still | renders | nicely |
1 | 2 | 3 |
Lists
1. One
2. Two
3. Three
* One
* Two
* Three
- One
- Two
- Three
- One
- Two
- Three