Login

Fancade Wiki

Renamed Wiki to /Wiki/Wiki

... ...
@@ -215,3 +215,4 @@ Only One Way.md: Games/Only One Way.md
215 215
iC2.md: Games/iC2.md
216 216
Games/Project 100.md: Games/Simple platformer.md
217 217
Games/Simple platformer.md: Games/Project 100.md
218
Wiki.md: Wiki/Wiki.md
... ...
@@ -1,118 +0,0 @@
1
---
2
title: Fancade Wiki
3
---
4
5
*The wiki is developed by [[Nikita Ivanov|ViChyavIn]], Olle Landin, and [[Martin Magni]].*
6
7
This wiki helps users learn more about Fancade and its [[game-making tools|Build]]. Pages are written by Fancade users themselves. Maybe you want to help improve the wiki too?
8
9
[[_TOC_]]
10
11
## Rules
12
13
Yes? You'd like to contribute? Great! Here's some advice to help you get started editing.
14
15
### Write about Fancade
16
17
The wiki is about [Fancade](https://fancade.com), so try to stay on topic.
18
19
### Create an appropiate page
20
21
Before creating a brand *new* wiki page, check if:
22
23
* The page already exists, just with a slightly different name?
24
* The info doesn't fit better as a note on an existing page?
25
* The page is likely to be useful to other Fancade users?
26
27
### Don't save unfinished edits
28
29
If you're not done yet, but you can't continue working right now, you can always quit the browser and get back to editing later (the wiki will remember the state of the page and will prompt you to recover it when you begin editing again).
30
31
### Don't leave unanswered questions
32
33
If you're not sure about something, don't ask future editors to correct you in the page:
34
35
<blockquote>
36
[[Constraints]] are very difficult to learn. (Maybe it's just me?)
37
</blockquote>
38
39
Those who can answer your question will rarely visit the page, so you will end up throwing your question at readers'. Feel free to join our [[Discord]] server and ask your question there, in order to eventually provide the most accurate information to readers!
40
41
## How-to
42
43
Want to help but have no idea how it's done? Read below to learn how to format text and create new pages.
44
45
### Create a page
46
47
In the Wiki page, there is an ability to create new pages, simply by clicking "New". A pop-up with the title "Create New Page" should show up.
48
49
Create a page name with the appropriate title.
50
51
If you are writing it in a different section (e.g. Build) write `<section>/<title>` (e.g. `Build/Set Variable`) to create it within this section.
52
53
Now you can write a Wiki page! After you have written it all, click "Preview" to make sure everything looks correct.
54
55
Please check [[Manual of Style]] for a guide on how to create one.
56
57
### Style a page
58
59
The Wiki supports the formatting syntax called "Markdown". You can easily *emphasize* **text** (you can make text **bold**, *italic*, ***bolditalic***, and ~~strikethrough~~, but not underline because markdown does not support underlining text), make lists, add links, insert images and even make tables! For more information, read [[this|https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet]].
60
61
#### Basics
62
63
##### Add link
64
65
To insert a link, you can:
66
67
| Wrap page name in square brackets | `[[Number]]` | [[Number]]
68
| Wrap page name in square brackets and put a suffix | `[[Number]]s` | [[Number]]s
69
| Wrap page name in square brackets and set displayed text | `[[One|Number]]` | [[One|Number]]
70
| Wrap URL in square brackets | `[[http://fancade.com/]]` | [[http://fancade.com/]]
71
| Wrap URL in square brackets and set displayed text | `[[Fancade|http://fancade.com/]]` | [[Fancade|http://fancade.com/]]
72
73
If your page is inside of a folder, the link's destination will also be inside of it. This can cause problems if, say, you want to link from `Script/How do I add numbers?` to `Blocks/Add Number`. You can avoid this by putting a slash at the start of the target page name, e.g. `[[/Blocks/Add Number]]`.
74
75
##### Make list
76
77
To insert a list element, put `*`, `+` or `-` at the beginning of a line. For example,
78
79
```
80
* Fancade
81
* is the fanmade
82
* arcade
83
```
84
will be
85
86
* Fancade
87
* is the fanmade
88
* arcade
89
90
#### Add image
91
92
To add an image, drag-n-drop it into the edit form. (It will be uploaded to `/uploads/<filename>`)
93
94
To insert an existing image, you wrap the image path/URL in square brackets (like you do with regular links/URLs) to insert it directly in the text.
95
96
```[[uploads/image.jpg]]```
97
98
You can also upload an image by clicking "Upload" button in edit mode.
99
100
### Delete a page
101
102
Deleting a page is possible, but restricted. Ping one of the Fanmods or Wiki Mods on the Discord server and suggest the deletion to them.
103
104
### Revert a change
105
106
Go to the page's history (through link in the latest changes), check the commit, compare and revert.
107
108
### Rename a page
109
110
Click Rename, and enter the new page name.
111
112
## Sign out
113
114
There's no button to sign out (and seldom reason to). But if you clear the cookies in your browser settings, you will be signed out.
115
116
## Notes
117
118
* You can switch between edit and preview mode with `CTRL+Shift+P`.
... ...
@@ -0,0 +1,118 @@
1
---
2
title: Fancade Wiki
3
---
4
5
*The wiki is developed by [[Nikita Ivanov|ViChyavIn]], Olle Landin, and [[Martin Magni]].*
6
7
This wiki helps users learn more about Fancade and its [[game-making tools|Build]]. Pages are written by Fancade users themselves. Maybe you want to help improve the wiki too?
8
9
[[_TOC_]]
10
11
## Rules
12
13
Yes? You'd like to contribute? Great! Here's some advice to help you get started editing.
14
15
### Write about Fancade
16
17
The wiki is about [Fancade](https://fancade.com), so try to stay on topic.
18
19
### Create an appropiate page
20
21
Before creating a brand *new* wiki page, check if:
22
23
* The page already exists, just with a slightly different name?
24
* The info doesn't fit better as a note on an existing page?
25
* The page is likely to be useful to other Fancade users?
26
27
### Don't save unfinished edits
28
29
If you're not done yet, but you can't continue working right now, you can always quit the browser and get back to editing later (the wiki will remember the state of the page and will prompt you to recover it when you begin editing again).
30
31
### Don't leave unanswered questions
32
33
If you're not sure about something, don't ask future editors to correct you in the page:
34
35
<blockquote>
36
[[Constraints]] are very difficult to learn. (Maybe it's just me?)
37
</blockquote>
38
39
Those who can answer your question will rarely visit the page, so you will end up throwing your question at readers'. Feel free to join our [[Discord]] server and ask your question there, in order to eventually provide the most accurate information to readers!
40
41
## How-to
42
43
Want to help but have no idea how it's done? Read below to learn how to format text and create new pages.
44
45
### Create a page
46
47
In the Wiki page, there is an ability to create new pages, simply by clicking "New". A pop-up with the title "Create New Page" should show up.
48
49
Create a page name with the appropriate title.
50
51
If you are writing it in a different section (e.g. Build) write `<section>/<title>` (e.g. `Build/Set Variable`) to create it within this section.
52
53
Now you can write a Wiki page! After you have written it all, click "Preview" to make sure everything looks correct.
54
55
Please check [[Manual of Style]] for a guide on how to create one.
56
57
### Style a page
58
59
The Wiki supports the formatting syntax called "Markdown". You can easily *emphasize* **text** (you can make text **bold**, *italic*, ***bolditalic***, and ~~strikethrough~~, but not underline because markdown does not support underlining text), make lists, add links, insert images and even make tables! For more information, read [[this|https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet]].
60
61
#### Basics
62
63
##### Add link
64
65
To insert a link, you can:
66
67
| Wrap page name in square brackets | `[[Number]]` | [[Number]]
68
| Wrap page name in square brackets and put a suffix | `[[Number]]s` | [[Number]]s
69
| Wrap page name in square brackets and set displayed text | `[[One|Number]]` | [[One|Number]]
70
| Wrap URL in square brackets | `[[http://fancade.com/]]` | [[http://fancade.com/]]
71
| Wrap URL in square brackets and set displayed text | `[[Fancade|http://fancade.com/]]` | [[Fancade|http://fancade.com/]]
72
73
If your page is inside of a folder, the link's destination will also be inside of it. This can cause problems if, say, you want to link from `Script/How do I add numbers?` to `Blocks/Add Number`. You can avoid this by putting a slash at the start of the target page name, e.g. `[[/Blocks/Add Number]]`.
74
75
##### Make list
76
77
To insert a list element, put `*`, `+` or `-` at the beginning of a line. For example,
78
79
```
80
* Fancade
81
* is the fanmade
82
* arcade
83
```
84
will be
85
86
* Fancade
87
* is the fanmade
88
* arcade
89
90
#### Add image
91
92
To add an image, drag-n-drop it into the edit form. (It will be uploaded to `/uploads/<filename>`)
93
94
To insert an existing image, you wrap the image path/URL in square brackets (like you do with regular links/URLs) to insert it directly in the text.
95
96
```[[uploads/image.jpg]]```
97
98
You can also upload an image by clicking "Upload" button in edit mode.
99
100
### Delete a page
101
102
Deleting a page is possible, but restricted. Ping one of the Fanmods or Wiki Mods on the Discord server and suggest the deletion to them.
103
104
### Revert a change
105
106
Go to the page's history (through link in the latest changes), check the commit, compare and revert.
107
108
### Rename a page
109
110
Click Rename, and enter the new page name.
111
112
## Sign out
113
114
There's no button to sign out (and seldom reason to). But if you clear the cookies in your browser settings, you will be signed out.
115
116
## Notes
117
118
* You can switch between edit and preview mode with `CTRL+Shift+P`.
Fancade Wiki