Difference between revisions of "Main Page"
From thelinuxwiki
(Pushed from thelinuxwiki.com.) |
(→source code) |
||
(4 intermediate revisions by one user not shown) | |||
Line 12: | Line 12: | ||
[http://www.thelinuxwiki.com/index.php?title=Special:UserLogin&type=signup Login / Signup] | [http://www.thelinuxwiki.com/index.php?title=Special:UserLogin&type=signup Login / Signup] | ||
− | |||
− | |||
Line 19: | Line 17: | ||
[http://index.php?title=MediaWiki:Sidebar&action=edit Sidebar] | [http://index.php?title=MediaWiki:Sidebar&action=edit Sidebar] | ||
− | |||
− | |||
− | |||
Line 28: | Line 23: | ||
* [http://www.thelinuxwiki.com/index.php/Special:Upload Click here to upload a file] | * [http://www.thelinuxwiki.com/index.php/Special:Upload Click here to upload a file] | ||
− | == | + | == syntax examples == |
+ | ===source code=== | ||
− | + | <nowiki> | |
+ | <source lang="python"> | ||
+ | </nowiki> | ||
+ | <br> | ||
+ | <nowiki> | ||
+ | message = 'hello world!' | ||
+ | </nowiki> | ||
+ | <br> | ||
+ | <nowiki> | ||
+ | print message | ||
+ | </nowiki> | ||
+ | <br> | ||
+ | </source> | ||
− | + | will yeild... | |
− | + | <source lang="python"> | |
+ | message = 'hello world!' | ||
+ | print message | ||
+ | </source> | ||
== special pages == | == special pages == | ||
[http://www.thelinuxwiki.com/index.php/Special:ListFiles List of uploaded files] | [http://www.thelinuxwiki.com/index.php/Special:ListFiles List of uploaded files] |
Latest revision as of 15:30, 14 August 2017
Consult the User's Guide for information on using the wiki software.
Contents |
Getting started
new user signup
Admin Quick Links
Uploading files? Click the link below.
syntax examples
source code
<source lang="python">
message = 'hello world!'
print message
</source>
will yeild...
message = 'hello world!' print message