Difference between revisions of "Test"
(added alternate parser tags; will only work when extension is installed) |
(added Highlight.js test) |
||
Line 15: | Line 15: | ||
</source> | </source> | ||
+ | |||
+ | ---- | ||
Example of [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi Extension:SyntaxHighlight_GeSHi] (Not Installed Yet) | Example of [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi Extension:SyntaxHighlight_GeSHi] (Not Installed Yet) | ||
Line 25: | Line 27: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Test of [http://softwaremaniacs.org/soft/highlight/en/download/ Highlight.js] (Not Installed Yet) | ||
+ | <pre> | ||
+ | <code> | ||
+ | int main(void){ | ||
+ | for(i=0;i<10;i++){ | ||
+ | cout<<"TESTING"; | ||
+ | } | ||
+ | } | ||
+ | </code> | ||
+ | </pre> |
Revision as of 13:09, 5 December 2009
Test Page
int main(void){
for(i=0;i<10;i++){
cout<<"TESTING";
}
}
Example of Extension:SyntaxHighlight_GeSHi (Not Installed Yet)
int main(void){
for(i=0;i<10;i++){
cout<<"TESTING";
}
}
Test of Highlight.js (Not Installed Yet)
<code> int main(void){ for(i=0;i<10;i++){ cout<<"TESTING"; } } </code>