Editing Help

From Rivals of Aether Unofficial Workshop Manual

Some of the things you should know about editing.

Example page links[edit | edit source]

spawn_hit_fx() (sample page)

Sandbox

Function Page Template

Visual Editing[edit | edit source]

This wiki implements the Visual Editing extension, so you can mostly edit without knowing the wiki coding format, but Visual Editing is not perfect, and it's unable to do some extra things this wiki does, or do precise editing. It is a great way to start a page with, though!

Highlighted Code[edit | edit source]

You can place an automatically-highlighted code by using the <pre> tag with the class of code.

Code:
<pre class="code">if (attack == AT_NSPECIAL && window == 3 && window_timer == 1) {

spawn_hit_fx(x, y, 141);

}</pre>

Result:

if (attack == AT_NSPECIAL && window == 3 && window_timer == 1) {
spawn_hit_fx(x, y, 141);
}

Function Link[edit | edit source]

For linking a function page, this wiki can generate a fancy link with highlighted texts, by using the Function Link template.

Code
{{Function Link|draw_sprite|sprite, subimage, x, y|1}}

Result:

draw_sprite( sprite, subimage, x, y ) (GML)


For more details, check out the template page.

Note[edit | edit source]

You can emphasize something really important by using the Note template.

Code:
{{Note|info|'''Note:''' This is info.}}

Result:

ℹ️

Note: This is info.

For more details, check out the template page.

Invisible Table[edit | edit source]

In this wiki, the "un-styled" table tag is used as an invisible table to act as a layout tool, allowing you to lay out things in rows or columns.

This can be done in Visual Editing as well, by selecting a table, clicking "Properties" and un-ticking "Styled (wikitable)".

Example:

Top left Top Top right
Bottom left Bottom Bottom right
Cookies help us deliver our services. By using our services, you agree to our use of cookies.