Test your Wiki editing skills here.
[[www:wikitext|WikiText Markup]]
----
Testing Code box
[[code]]
Print "HELLO!"
end
[[code]]


I'll try to upload a file [[file:les2.lsn]]
Okay lets see if I succeeded
Okay looks good



=heading 1= 
==heading 2== 
* list
===heading 3=== 
# numbered
**bold**
//italics//
__underline__
{{Monospaced Font}}
> indent

URL [[http://some.url/|http://some.url]]
Email [[mailto:help@wikispaces.org|help@wikispaces.org]]
|| Table || Table || Table ||
|| Table || Table || Table ||
|| Table || Table || Table ||

----
Horizontal Line

Use the Preview Button or the Save Button to see the results.

[[user:Alyce]]
[[user:Alyce|1136644960]]

[[image:NEW.GIF]]
[[image:UPDATED2.GIF]]


a ha.. to post code can use 2 square open brackets, the word 'code', then 2 square closing brackets, then the same again after the code..
[[code]]
[test]
'test how to post code in a wiki
goto [eggs]
print "nothing"
wait
[eggs]
'just some code to check formatting
print "bacon"
end
[[code]]

~
~~
[[user:scapegoat]]
[[user:scapegoat|1137887133]]

--
Wikitext supports syntax colouring, although LB isn't on the list of languages. The closest is QBASIC, which you can use if you want to.
``[[code format="qbasic"]]``
[[code format="qbasic"]]
10 PRINT "Hello World!"
20 PRINT "Hello again"
30 GOTO 40
40 PRINT ""
50 PRINT "Goodbye from down here"
60 END
[[code]]
``[[code]]``

Did QBASIC have an 'END' command? Hmmmm...

[[user:Zack_Z_|1199140012]]

[[http://http//alix.whittal.free.fr/|Link Test]]

|| Box made as single element table. How does this work? New line. ||

----

==Adding Images== 

To display the image 'as is' on its own line,
[[image:fairy.jpg]]
use image:fairy.jpg enclosed in the double bracket tags. The file size of this fairy.jpg image is 55 pixels x 88 pixels.

To display the image in a different width and height, include those dimensions within the image brackets.

[[image:fairy.jpg width="27" height="44"]]
This comes from the same loaded fairy.jpg image, but it has been given a width of 27 pixels and a height of 44 pixels.

[[image:fairy.jpg width="110" height="176"]]
Again, the same loaded image file, but with a width defined at 110 pixels and a height defined as 176 pixels.

An image can be part of a line of text.

What happens when a 5-year-old loses a baby tooth?
The USA custom: In the middle of the night, the [[image:fairy.jpg]] finds the lost tooth under the pillow and replaces it with a shiney quarter.
In other countries, the prize may be something other than a quarter.

You can ""float"" the image to the left by using the table (double pipes) markup tags and including {{align="left"}} within the image double brackets.

|| [[image:fairy.jpg width="32" height="44" align="left"]]The USA custom: In the middle of the night, the tooth fairy finds the lost tooth under the pillow and replaces it with a shiney quarter. In other countries, the prize may be something other than a quarter. ||

To float the image to the right, use {{align="right"}}

|| [[image:fairy.jpg width="32" height="44" align="right"]]The USA custom: In the middle of the night, the tooth fairy finds the lost tooth under the pillow and replaces it with a shiney quarter. In other countries, the prize may be something other than a quarter. ||

To Upload an image, click the Images hyperlink in any page opened in EDIT MODE, or go to [[http://basic.wikispaces.com/space/about|Manage Space]] and click on LIST AND UPLOAD FILES.

----

[[user:cundo|1244054646]]

<span style="display: block; text-align: center; width: 80%; margin: 10px auto 10px 30px; padding: 10px; background-color: #DDDDDD;">
__**Download my Game**__
[[file:farkle_cundo.zip]]
</span>
That was easy!

LB: background-color: #DDDDBB

<span style="display: block; width: 50%; margin: 5px auto 10px 30px; padding: 10px; background-color: #DDDDBB;">
**For/Next loop.**
[[code format="qbasic"]]
For i = 1 to 100
   Print "i=";i
Next
[[code]]
</span>