(→Internal link to an anchor: added using external links to link anchors) |
|||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ | {{Meta}} | ||
{{ | {| class="MainPage" | ||
| style="border: 1px solid #c0ffc9; color: #000; background-color:#f0f8ff; padding: 10px 10px 10px 10px; font-size: 85%;" valign="top"| | |||
<div style="background-color: #adeaad; text-align: center; border: 1px solid #000000; margin-bottom: 10px;"> | |||
Current server date and time: {{CURRENTDAY}}/{{CURRENTMONTH}}/{{CURRENTYEAR}} {{CURRENTDAYNAME}} {{CURRENTTIME}} | |||
</div> | |||
<big><span style="color:#00BF00; font-size:160%">❦</span>'''Alexanderlime's Wiki Contribution Guide''' <span style="color:#00BF00; font-size:160%">❦</span></big> | <big><span style="color:#00BF00; font-size:160%">❦</span>'''Alexanderlime's Wiki Contribution Guide''' <span style="color:#00BF00; font-size:160%">❦</span></big> | ||
Line 79: | Line 82: | ||
<nowiki>#REDIRECT [[Main Page]]</nowiki> | <nowiki>#REDIRECT [[Main Page]]</nowiki> | ||
===Anchors=== | ===Anchors=== | ||
====Internal link to an anchor==== | ====Internal link to an anchor in the same page==== | ||
<nowiki>[[#Managing_pages]]</nowiki> will result [[#Managing_pages]]. | |||
====Setting an internal link anchor==== | ====Setting an internal link anchor==== | ||
Line 86: | Line 89: | ||
====Internal link to an anchor at another page==== | ====Internal link to an anchor at another page==== | ||
<nowiki>[[Magic#Getting Started]]</nowiki> will lead you to [[Magic#Getting Started]] of [[Magic]]. | <nowiki>[[Magic#Getting Started]]</nowiki> will lead you to [[Magic#Getting Started]] of [[Magic]]. | ||
If the anchor is at heading level 2+, only mention the target's heading level. For example, u type <nowiki>[[Stats#Intelligance]] instead of [[Stats#Leveled_Stats#Intelligence]].</nowiki> | |||
===External Links=== | ===External Links=== | ||
To add an external link, enclose the URL followed by space and the name of the page you want to link to in single square brackets. When you save the page, you'll see the new link pointing to your page, with an arrow icon after it to show that it was coded with single bracket external link syntax, and thus may lead to another site. | To add an external link, enclose the URL followed by space and the name of the page you want to link to in single square brackets. When you save the page, you'll see the new link pointing to your page, with an arrow icon after it to show that it was coded with single bracket external link syntax, and thus may lead to another site. | ||
*<nowiki>http://google.com</nowiki> http://google.com | *<nowiki>http://google.com</nowiki> http://google.com | ||
*<nowiki>[http://google.com Google]</nowiki> [http://google.com Google] | *<nowiki>[http://google.com Google]</nowiki> [http://google.com Google] | ||
==Colours== | |||
Set text color by using<nowiki> <span style="color:#FF0000"> This text will be red </span></nowiki><span style="color:#FF0000"> This text will be red </span> | |||
Set background color by using <nowiki><span style="background:green"> This text will be on a green background </span></nowiki><span style="background:green"> This text will be on a green background </span> | |||
Set both by using <nowiki><span style="color:#FFFF00; background:#00C000">This text will be yellow and on a green background </span></nowiki><span style="color:#FFFF00; background:#00C000">This text will be yellow and on a green background </span> | |||
'Colour' Authored by [[User:Altus Institute|Altus Institute]] |
Latest revision as of 11:55, 3 August 2015
Current server date and time: 21/11/2024 Thursday 20:40 ❦Alexanderlime's Wiki Contribution Guide ❦ Basics
No! Don't edit this page! Make a summaryBefore you save a change, enter a short note in the "Summary :" box describing your changes. Just put in a short description of what you just changed. You can take look at Special:RecentChanges as example. PreviewALWAYS preview before you save. This is also related to tracking changes because every time you save, this is displayed to others as a separate change. Just treat it as a good habit. Show changeswhen you edit, there an option next to "Preview" that is the "Show changes" button which allows you to see the differences between the current version and your edited version. Managing pagesStarting a new pageThere're several ways to start a new page:
Moving a pageMoving a page means renaming it. This is done by using the "move" tab at the top. The tab is not visible if you are not logged in. Simply enter the new name and click "Move page". Leave the "Move associated talk page" option ticked.
After moving a pageMoving a page should not result in any broken links, however you might want to hunt down pages or other redirects which link in to the redirect, and change their text to link directly to the new title. The "What links here" feature, which can be used through the link in the Tools (at bottom of the sidebar on the left) is useful when doing this. Deleting a pagePlease consider leaving a redirect instead of deleting the page. Also, normal users cannot delete a page which means you should contact an admin if you really want to do so. FormattingBasic formatsWhat you type and what you get:
Sections formattingHeadings of different levelsYou will get
Bullet listStart each line with an asterisk (*). More asterisks give deeper and deeper levels. Line breaks don't break levels but jumping levels creates empty space. Any other start ends the list.
Numbered listStart each line with a number sign (#). More number signs give deeper and deeper levels. Line breaks don't break levels but jumping levels creates empty space. Blank lines end the list and start another. Any other start also ends the list. ParagraphsThe wiki ignores single line breaks. To start a new paragraph, leave an empty line. You can force a line break within a paragraph with the HTML tag <br />. HTML tagsSome HTML tags are allowed in wiki, for example <code>, <div>, <span> and <font>. These apply anywhere you insert them. LinksInternal LinksYou get Main Page if you type [[Main Page]]. To make it piped, add a | and the text after 'Main Page like [[Main Page|different text]] and you will get different text. RedirectIf you made a blank page with the following code inside, the page will be redirected to Main Page. AnchorsInternal link to an anchor in the same page[[#Managing_pages]] will result #Managing_pages. Setting an internal link anchorOmit the "optional text" for invisible anchor by typing <div id="NameOfAnchorHere">optional text</div>. Internal link to an anchor at another page[[Magic#Getting Started]] will lead you to Magic#Getting Started of Magic.
External LinksTo add an external link, enclose the URL followed by space and the name of the page you want to link to in single square brackets. When you save the page, you'll see the new link pointing to your page, with an arrow icon after it to show that it was coded with single bracket external link syntax, and thus may lead to another site.
ColoursSet text color by using <span style="color:#FF0000"> This text will be red </span> This text will be red Set background color by using <span style="background:green"> This text will be on a green background </span> This text will be on a green background Set both by using <span style="color:#FFFF00; background:#00C000">This text will be yellow and on a green background </span>This text will be yellow and on a green background 'Colour' Authored by Altus Institute |