Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

UniWiki:Editing commands visual guide: Difference between revisions

From EVE University Wiki
No edit summary
No edit summary
Line 3: Line 3:
This page shows a small number of commonly used uniwiki styling commands. EDIT this page to see the coded version. (It can help to open this page in two windows; one with the code.) Above the code you will see a set of menu items ... clicking on these is often faster than typing the code manually.
This page shows a small number of commonly used uniwiki styling commands. EDIT this page to see the coded version. (It can help to open this page in two windows; one with the code.) Above the code you will see a set of menu items ... clicking on these is often faster than typing the code manually.


*Lists are made with * # and/or :
*Lists are made with * or #
*The next line must follow with no blank lines
*The next line must follow with no blank lines
**Use more * to indent
**Use more * to indent
::Use : to indent without a label


#Use # for numbered lists
#Use # for numbered lists
##Two ## to indent
##Two ## to indent


{{Note box|This is a "note box". Used for emphasis.}}
::Use : to indent without a label
 
{{hatnote|This is a "hat note"; used for emphasis.}}
{{Note box|This is a "note box". also used for emphasis.}}


<span style="color:#53B14E">This is how you make colored text. You numbered codes determine an [https://html-color-codes.info HTML color].</span>
<span style="color:#53B14E">This is how you make colored text. You numbered codes determine an [https://html-color-codes.info HTML color].</span>
Line 24: Line 26:
[[File:TemperateLarge.png|thumb]]
[[File:TemperateLarge.png|thumb]]
The standard image appears on the right.
The standard image appears on the right.
[[File:TemperateLarge.png|left|thumb]][[File:TemperateLarge.png|center|upright=.2|thumb]]
[[File:TemperateLarge.png|left|thumb]][[File:TemperateLarge.png|center|upright=0.2|thumb]]
Use |left| to put it on the left. Use |center| to center it. To change the size, use |upright=1.0| ... make the number bigger or smaller - 2.0 will be twice as big; 0.5 will be half as big ... more or less.  
Use |left| to put it on the left. Use |center| to center it. To change the size, use |upright=1.0| ... make the number bigger or smaller - 2.0 will be bigger; 0.5 will be smaller.  
{{clear}} Use the clear command to start the next text line AFTER the image.  
{{clear}} Use the clear command to start the next text line AFTER the image.  


Use break (br) to<br>split a line in two.


 
Tables are easier than they look. The basics are shown in the [[UniWiki:Editing_Guide#Tables|UniWiki Editing Guide]]. Details for more complex tables are at the [https://en.wikipedia.org/wiki/Help:Table WIKI help center].
 
{| class="wikitable" style="margin-left: auto; margin-right: auto; border: none;"
|-
! Header text !! Header text !! Header text
|-
| Example || Example || Example
|}
 
----------------------------