Example:SyntaxHighlight: Unterschied zwischen den Versionen
Aus FB-Wiki
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Usage == Once installed, you can use "syntaxhighlight" tags on wiki pages. For example, <syntaxhighlight lang="python" line="1"> def quickSort(arr): les…“) |
(kein Unterschied)
|
Aktuelle Version vom 11. März 2016, 11:06 Uhr
Usage
Once installed, you can use "syntaxhighlight" tags on wiki pages. For example, <syntaxhighlight lang="python" line="1"> def quickSort(arr):
less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass
</syntaxhighlight>
is the result of the following wikitext markup:
<syntaxhighlight lang="python" line="1" > def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>