Paaiškinimai

URL

jeigu ivedate URL normaliame tekste, yra sunkumų atskiriant kas priklauso tam URL ir kas ne. Yra 4 būdai parodyti kur baigiasi URL:

Palaikomos URL schemos yra: http, https, ftp, file ir kai kurios kitos. Jūsų wiki administratorius gali išplėsti palaikomas schemas naudodamas url_schemas kintamuosius (Skaitykite HelpOnConfiguration).

Priedo prie standartinių schemų, yra MoinMoin-tam tikros: attachment ir drawing, jos susijusios su failų prisegimais ir yra paaiškinti HelpOnActions/AttachFile.

Tarpai

You can use double-brackets (or double-braces) syntax to link to a page or file name with spaces. This will even work for interwiki links, provided the target wiki understands standard url quoting (spaces will become %20).

However, best practice is to try to avoid spaces in URLs, as you may find it's more difficult to work with that URL. For example, if you try copying and emailing that URL link, the receiver may have difficulty landing on the page you specified.

Prieraišai

Norint įterpti prieraišą į puslapį, reikia Anchor makrokomandos (skaitykite HelpOnMacros): <<Anchor(jo pavadinimas)>>, kur "jo pavadinimas" turi būti tikras prieraišo identifikatorius.

Padaryti nuorodą į prieraišą, esantį tame pačiame puslapyje, naudokite [[#prieraišopavadinimas]] arba [[#prieraišopavadinimas|etiketės tekstas]].

Padaryti nuorodą į prieraišą kitame wiki puslapyje, rašykite [[PuslapioPavadinimas#prieraišopavadinimas]] arba [[PuslapioPavadinimas#prieraišopavadinimas|etiketės tekstas]], kur "PuslapioPavadinimas" yra kito puslapio pavadinimas ir "prieraišopavadinimas" yra prieraišo pavadinimas tame puslapyje.

Automatiškai sugeneruotų nuorodų išvengimas

To keep a word like PageName from automatically being turned into a link, you can suppress CamelCase linking by putting an exclamation mark (!) before the word, i.e. !PageName. This method will not interfere with most searches (the exception is certain quoted phrases and regular expressions).

JAlternatively, you can insert two back-ticks Page``Name. However, the problem with doing this is that it will prevent a simple search for the word "PageName" from matching Page``Name in a page, due to the inserted characters.

Norint išvengti automatiško URL saistymo, naudokite `http://...` arba {{{http://...}}}.

Sometimes you may want to give additional parameters for a link, influencing how it looks like, how it behaves and how exactly it links to the target - this is what the params part of [[target|text|params]] is for.

Setting attributes of the <a> tag

Available attributes: class, title, target, accesskey (see some html reference if you want to know what they mean).

Example: [[http://moinmo.in/|MoinMoin Wiki|class=green dotted,accesskey=1]]

Renders as: MoinMoin Wiki

(!) Pressing the access key should jump to that link target (for Firefox 2.x and the example above it is Alt-Shift-1).

Creating a query string for the target URL

What is possible for this depends on the target site.

Example: [[MoinMoin:MoinMoinWiki|MoinMoin Wiki|&action=diff,&rev1=1,&rev2=2]]

Renders as: MoinMoin Wiki

(!) Please remember:

Images

You may use

{{attachment:imagefile.png|text describing image|width=100}}

to have the attached file imagefile.png displayed with a width of 100px; the graphics' height will be reduced/ enlarged proportionally (e.g. if imagefile.png was actually 200px width and 400px heigh, height would be reduced in this example to 200px). You may also use

{{attachment:imagefile.png|text describing image|height=100}}

to have the attached file imagefile.png displayed with a height of 100px, and the graphics' width will be reduced/ enlarged proportionally. Use

{{attachment:imagefile.png|text describing image|width=100 height=150}}

to have the attached file imagefile.png displayed with a width of 100px and a height of 150px. Please do not omit the alternative text in neither case.

Note this does not alter the attached file itself, in only makes the browser scale the image down/ up to the value given while displaying it.

Thumbnails

You may combine the transclusion with the linking syntax, leading to an image displayed in reduced size that links to itself in actual size, e.g.

[[attachment:imagefile.png|{{attachment:imagefile.png|text describing image|width=100}}]]