Difference between revisions of "Main Page"
From thelinuxwiki
(→source code) |
|||
(5 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | |||
Consult the [//meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software. | Consult the [//meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software. | ||
Line 7: | Line 6: | ||
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ] | * [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ] | ||
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list] | * [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list] | ||
+ | * [https://en.wikipedia.org/wiki/Help:Wikitext_quick_reference Wiki markup] | ||
+ | <br> | ||
+ | |||
+ | == new user signup == | ||
+ | |||
+ | [http://www.thelinuxwiki.com/index.php?title=Special:UserLogin&type=signup Login / Signup] | ||
+ | |||
+ | |||
+ | == Admin Quick Links == | ||
+ | |||
+ | [http://index.php?title=MediaWiki:Sidebar&action=edit Sidebar] | ||
+ | |||
+ | |||
+ | == Uploading files? Click the link below. == | ||
+ | |||
+ | * [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 == | ||
+ | |||
+ | [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