Difference between revisions of "Wiki editing tips"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "=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 ...")
 
(Syntax Highlighting)
Line 4: Line 4:
  
 
You can wrap your code in the following tags:
 
You can wrap your code in the following tags:
 +
 
<nowiki>
 
<nowiki>
 +
 
<syntaxhighlight lang="python">
 
<syntaxhighlight lang="python">
 +
 
..
 
..
 +
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 
</nowiki>
 
</nowiki>

Revision as of 21:40, 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>