Changes

372 bytes added ,  20:35, 6 December 2021
no edit summary
Line 33: Line 33:  
}}
 
}}
   −
<blockquote>This is a quote</blockquote
+
== Quotes ==
 +
TBD
 +
 
 +
<blockquote>This is a quote using quote block</blockquote>
 +
 
 +
{{quote | This is a test of a quote template}}
 +
 
 +
== Code ==
 +
We use the SyntaxHighlight Extension. See https://www.mediawiki.org/wiki/Extension:SyntaxHighlight
 +
 
 +
Example:
 +
 
 +
‎<syntaxhighlight lang="c#" line>
 +
def quick_sort(arr):
 +
less = []
 +
pivot_list = []
 +
more = []
 +
if len(arr) <= 1:
 +
return arr
 +
else:
 +
pass
 +
‎</syntaxhighlight>