meta data for this page
Erot
Tämä näyttää erot valitun ja nykyisen version kesken tästä sivusta.
Both sides previous revisionEdellinen revisioSeuraava revisio | Edellinen revisio | ||
wiki:syntax [22/05/2019 14:19] – harri | wiki:syntax [29/09/2024 22:56] (nykyinen) – ulkoinen muokkaus 127.0.0.1 | ||
---|---|---|---|
Rivi 75: | Rivi 75: | ||
For example this is a link to Wikipedia' | For example this is a link to Wikipedia' | ||
+ | ==== Windows Shares ==== | ||
+ | |||
+ | Windows shares like [[\\server\share|this]] are recognized, too. Please note that these only make sense in a homogeneous user group like a corporate [[wp> | ||
+ | |||
+ | Windows Shares like [[\\server\share|this]] are recognized, too. | ||
+ | |||
+ | Notes: | ||
+ | |||
+ | * For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone" | ||
+ | * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http:// | ||
+ | <?php | ||
+ | /** | ||
+ | * Customization of the english language file | ||
+ | * Copy only the strings that needs to be modified | ||
+ | */ | ||
+ | $lang[' | ||
+ | </ | ||
==== Image Links ==== | ==== Image Links ==== | ||
Rivi 120: | Rivi 137: | ||
Resize to given width and height((when the aspect ratio of the given width and height doesn' | Resize to given width and height((when the aspect ratio of the given width and height doesn' | ||
- | Resized external image: | + | Resized external image: |
Real size: {{wiki: | Real size: {{wiki: | ||
Resize to given width: | Resize to given width: | ||
Resize to given width and height: {{wiki: | Resize to given width and height: {{wiki: | ||
- | Resized external image: | + | Resized external image: |
Rivi 152: | Rivi 169: | ||
DokuWiki can embed the following media formats directly. | DokuWiki can embed the following media formats directly. | ||
- | | Image | '' | + | | Image | '' |
| Video | '' | | Video | '' | ||
| Audio | '' | | Audio | '' | ||
Rivi 230: | Rivi 247: | ||
* ;-) %% ;-) %% | * ;-) %% ;-) %% | ||
* ^_^ %% ^_^ %% | * ^_^ %% ^_^ %% | ||
+ | * m( %% m( %% | ||
* :?: %% :?: %% | * :?: %% :?: %% | ||
* :!: %% :!: %% | * :!: %% :!: %% | ||
Rivi 358: | Rivi 376: | ||
The same is true for %%// | The same is true for %%// | ||
+ | ===== Code Blocks ===== | ||
- | ===== Embedding HTML and PHP ===== | + | You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags '' |
- | You can embed raw HTML or PHP code into your documents | + | This is text is indented |
- | + | ||
- | HTML example: | + | |
< | < | ||
- | < | + | This is preformatted code all spaces are preserved: like |
- | This is some <span style=" | + | |
- | </ | + | |
- | < | + | |
- | <p style=" | + | |
- | </ | + | |
</ | </ | ||
- | <html> | + | <file> |
- | This is some <span style=" | + | This is pretty much the same, but you could use it to show that you quoted a file. |
- | </html> | + | </file> |
- | <HTML> | + | |
- | <p style=" | + | Those blocks were created by this source: |
- | </HTML> | + | |
+ | This is text is indented by two spaces. | ||
+ | |||
+ | | ||
+ | This is preformatted code all spaces are preserved: like <-this | ||
+ | | ||
+ | |||
+ | | ||
+ | This is pretty much the same, but you could use it to show that you quoted a file. | ||
+ | | ||
+ | |||
+ | ==== Syntax Highlighting ==== | ||
+ | |||
+ | [[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http:// | ||
+ | |||
+ | <code java> | ||
+ | /** | ||
+ | * The HelloWorldApp class implements an application that | ||
+ | * simply displays "Hello World!" | ||
+ | */ | ||
+ | class HelloWorldApp { | ||
+ | public static void main(String[] args) { | ||
+ | System.out.println(" | ||
+ | } | ||
+ | } | ||
+ | </code> | ||
+ | |||
+ | The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 actionscript ada aimms algol68 apache applescript apt_sources arm asm asp asymptote autoconf autohotkey autoit avisynth awk bascomavr bash basic4gl batch bf biblatex bibtex blitzbasic bnf boo caddcl cadlisp ceylon cfdg cfm chaiscript chapel cil c_loadrunner clojure c_mac cmake cobol coffeescript c cpp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmascript eiffel email epc e erlang euphoria ezt f1 falcon fo fortran freebasic freeswitch fsharp gambas gdb genero genie gettext glsl gml gnuplot go groovy gwbasic haskell haxe hicest hq9plus html html4strict html5 icon idl ini inno intercal io ispfpanel java5 java javascript jcl j jquery julia kixtart klonec klonecpp kotlin latex lb ldif lisp llvm locobasic logtalk lolcode lotusformulas lotusscript lscript lsl2 lua m68k magiksf make mapbasic mathematica matlab mercury metapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis oberon2 objc objeck ocaml-brief ocaml octave oobas oorexx oracle11 oracle8 oxygene oz parasail parigp pascal pcre perl6 perl per pf phix php-brief php pic16 pike pixelbender pli plsql postgresql postscript povray powerbuilder powershell proftpd progress prolog properties providex purebasic pycon pys60 python qbasic qml q racket rails rbs rebol reg rexx robots roff rpmspec rsplus ruby rust sas sass scala scheme scilab scl sdlbasic smalltalk smarty spark sparql sql sshconfig standardml stonescript swift systemverilog tclegg tcl teraterm texgraph text thinbasic tsql twig typoscript unicon upc urbi uscript vala vbnet vb vbscript vedit verilog vhdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp yaml z80 zxbasic// | ||
+ | |||
+ | There are additional [[doku> | ||
+ | |||
+ | ==== Downloadable Code Blocks ==== | ||
- | PHP example: | + | When you use the '' |
< | < | ||
- | <php> | + | <file php myexample.php> |
- | echo 'The PHP version: '; | + | <?php echo "hello world!"; |
- | echo phpversion(); | + | </file> |
- | echo ' (generated inline HTML)'; | + | |
- | </php> | + | |
- | < | + | |
- | echo '< | + | |
- | echo '< | + | |
- | echo '</ | + | |
- | </PHP> | + | |
</ | </ | ||
- | <php> | + | <file php myexample.php> |
- | echo 'The PHP version: '; | + | <?php echo "hello world!"; |
- | echo phpversion(); | + | </file> |
- | echo ' (inline HTML)'; | + | |
- | </php> | + | |
- | < | + | |
- | echo '< | + | |
- | echo '< | + | |
- | echo '</ | + | |
- | </PHP> | + | |
- | **Please Note**: HTML and PHP embedding is disabled by default in the configuration. | + | If you don't want any highlighting but want a downloadable file, specify a dash ('' |
===== RSS/ATOM Feed Aggregation ===== | ===== RSS/ATOM Feed Aggregation ===== | ||
Rivi 417: | Rivi 446: | ||
| author | | author | ||
| date | show item dates | | | date | show item dates | | ||
- | | description| show the item description. | + | | description| show the item description. |
| nosort | | nosort | ||
| //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | | | //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | | ||
Rivi 446: | Rivi 475: | ||
~~INFO: | ~~INFO: | ||
- | |||
- | ===== Math equations ===== | ||
- | |||
- | Matikkaa voi lisätä LaTeX-koodilla lisäämällä koodi $-merkkien sisään. Esimerkiksi | ||
- | < | ||
- | näkyy valmiina Vkok=8,99⋅109 Nm2C2⋅(15μC2,236m−15μC2,236m) | ||
- | |||
- | LaTeX-koodia voi tehdä helposti esim. Abitti-editorilla: | ||
- | |||
- | ===== Bootstrapper plugin ===== | ||
- | |||
- | https:// | ||
- | |||
- | Esimerkkejä: |