Difference between revisions of "Wiki editing tips"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Syntax Highlighting)
Line 3: Line 3:
 
This wiki will include many fragments of code. Syntax Highlighting will make the code easier to read and understand, most IDE's do this as standard and this wiki can also do it.
 
This wiki will include many fragments of code. Syntax Highlighting will make the code easier to read and understand, most IDE's do this as standard and this wiki can also do it.
  
You can wrap your code in the following tags:<br />
+
You can wrap your code in the following tags:<p />
  
 
<nowiki>
 
<nowiki>

Revision as of 23:34, 28 November 2016

Syntax Highlighting

This wiki will include many fragments of code. Syntax Highlighting will make the code easier to read and understand, most IDE's do this as standard and this wiki can also do it.

You can wrap your code in the following tags:

<syntaxhighlight lang="python"> .. </syntaxhighlight>


or if you want line numbers:


<syntaxhighlight lang="python" line> .. </syntaxhighlight>


The lang can be "csharp" , "vb" , or "vbnet". Many other languages are selectable, but students at TRC are doing the exam in C# therefore they should use the "csharp" option.