====== SystemOmega - nastavenie DokuWiki ======
Na stránke [[wiki:syntax|syntax]] je napísané viac o Wiki syntaxi.
===== Pluginy =====
Pluginy, ktoré sú nainštalované mimo základnej distribúcie aj s poznámkami:
==== Color syntax plugin ====
[[https://www.dokuwiki.org/plugin:color|color syntax plugin]] od Christopher Smith
Ofarbovanie kódu pomocou jednoduchej syntaxe.
* text1
* text2
* text3
* text1
* text2
* text3
----
==== EditTable plugin ====
[[https://www.dokuwiki.org/plugin:edittable|EditTable plugin]] od Andreas Gohr
Užívateľsky príjemnejšia editácia tabuliek.
----
==== Prettytables plugin ====
[[https://www.dokuwiki.org/plugin:prettytables|prettytables plugin]] od Constantinos Xanthopoulos
Formátovanie tabuliek v kóde, aby boli lepšie čitateľné. Funguje pri úprave textu, v nástrojovej lište je tlačítko "Fix table syntax".
----
==== Page Title Plugin ====
[[https://www.dokuwiki.org/plugin:pagetitle|Page Title Plugin]] od S.Sahara
Pomocou jednoduchého kódu je možné definovať vlastný nadpis stránky:
~~Title: some page title which different from the first heading~~
----
==== Imagereference plugin ====
[[https://www.dokuwiki.org/plugin:imagereference:pagetitle|Imagereference plugin]] od G. Uitslag
Pridávanie nadpisov obrázkov a tabuliek a možnosť robiť referencie na ne.
\\ Urobili sme podporu pre slovenskú verziu v súbore ''lib/plugins/imagereference/lang/sk/lang.php''
{{:wiki:dokuwiki-128.png}}
The Dokuwiki image can be seen in .
{{:wiki:dokuwiki-128.png}}
The Dokuwiki image can be seen in .
----
==== Translation Plugin ====
[[https://www.dokuwiki.org/plugin:translation|Translation Plugin]] od Andreas Gohr
Jazykové mutácie stránok.
----
==== AlignCode ====
AlignCode Plugin od Roman Sališ
Pri formátovaní tag-u ''code'' zarovná text vľavo a zobrazí kód bez zbytočných tabulátorov alebo medzier.
Funguje automaticky, nič netreba aktivovať. Ak by bolo predsa len vynútiť pôvodné správanie, potom stačí použiť tag ''file''.
Použitie ''%%%%'':
$result = array();
if (empty($settings["patientMsId"])) {
return x2_register_result(FALSE, getErrorText("7238.09.2"));
}
To isté ale ako ''%%%%'':
$result = array();
if (empty($settings["patientMsId"])) {
return x2_register_result(FALSE, getErrorText("7238.09.2"));
}
Ďalšie možnosti:
* ''%%%%''
* ''%%%%'' -> bude poskytnutý download ako ''example.php''
* ''%%%%'' -> zamení dve medzery za tabulátor, bude poskytnutý download ako ''example.php''
* ''%%%%'' -> zamení dve medzery za tabulátor, bude poskytnutý download ako ''example.php''
----
==== Backticks ====
Backticks Highlight Plugin od Roman Sališ
Text v dvojitých backticks zobrazí ako formátovanie pre MySQL príkaz.
* ``name``
* ``table1.name``
* ``table2`.`name``
* ``name``
* ``table1.name``
* ``table2`.`name``
----
==== Include Plugin ====
This is a handy plugin with which you can include another wiki page into the current one. Just including certain sections of a page or even whole namespaces is supported, too.
==== Condition Plugin ====
The Syntax Plugin allows to parse a content only if a specific condition (or multiple condition) is fulfilled. Some basic tests are provided and users can add new tests just by implementing a file in the template directory.