Changes

690 bytes added ,  20:35, 6 December 2021
no edit summary
Line 7: Line 7:  
* If applicable add a Microsoft Resources section.
 
* If applicable add a Microsoft Resources section.
 
* If applicable add a Community Resources section.
 
* If applicable add a Community Resources section.
 +
 +
== Boxes to use ==
 +
{{
 +
PWBoxInfo
 +
| title = Test Info
 +
| text = Test test test
 +
}}
 +
 +
{{
 +
PWBoxWarning
 +
| title = Test Warning
 +
| text = Test test test
 +
}}
 +
 +
{{
 +
PWBoxError
 +
| title = Test Error
 +
| text = Test test test
 +
}}
 +
 +
{{
 +
PWBoxSuccess
 +
| title = Test Success
 +
| text = Test test test
 +
}}
 +
 +
== 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>