Help:Editing basics

From Inkipedia, the Splatoon wiki
Revision as of 04:26, 14 December 2018 by Eithris (talk | contribs)
← Return to Help:Contents
Suggest an editing topic to be added here!

Welcome to Inkipedia! If you're on this page, you're probably new to Wikicode or just need a little clarification to build that awesome template you've been dreaming of. Look no further, because we've got you covered.

The Basics

Input Output
Text Hello world! Hello world!
Italics ''Hello world!'' Hello world!
Bold '''Hello world!''' Hello world!
Bold Italics '''''Hello world!''''' Hello world!

Links

Input Output
Link [[Inkling]] Inkling
[[Inkling]]s Inklings
Redlink [[Red link example]] Red link example
Pipe [[Inkling|Squid]] Squid

Templates

Input Output
Button {{button|X}} X
Stick {{button|RS}} Right Stick
Gamepad {{gamepad}} Template:Gamepad

Images

Input Output
Image [[File:MarieArt.png]]
Image thumbnail [[File:MarieArt.png|thumb]]
Image thumbnail with caption [[File:MarieArt.png|thumb|A caption!]]
A caption!
Image with a maximum width [[File:MarieArt.png|100px]]
Image with a maximum height [[File:MarieArt.png|x100px]]
Image with a maximum width and height [[File:MarieArt.png|100x100px]]
*Note that if an image is given a maximum width and height that do not match its Template:Wp, it will conform to whichever value makes it smaller. For example, the above image becomes 100px wide by 80px tall; if it was 100px tall then it would be 125px wide, which exceeds the given maximum width.
Image that Template:Wp to the right [[File:MarieArt.png|float|right]]
float
float
*An image with the thumb attribute also floats to the right, but this does so without the frame

Tables

Main article: Help:Tables
Input Output
Table {| class="wikitable"
| Foo
|}
Foo
Table with multiple cells {| class="wikitable"
| Foo
| Bar
|}
Foo Bar
Table with multiple rows {| class="wikitable"
| Foo
| Bar
|-
| Baz
| Qux
|}
Foo Bar
Baz Qux
Table with header cells {| class="wikitable"
! Foo
! Bar
|-
| Baz
| Qux
|}
Foo Bar
Baz Qux