Content deleted Content added
Happy-melon (talk | contribs) rm deleted template |
→Mathematical formulas: and also software source code |
||
Line 698:
|<pre><nowiki>
<math>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
</nowiki></pre>
|}
=== Software source code ===
You can format software source code.
See [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi Mediawiki: Extension:SyntaxHighlight GeSHi].
{| border="1" cellpadding="2"
!width="1000"|What it looks like
!width="500"|What you type
|-
|
<source lang=cpp>
// 'Hello World!' program
#include <iostream>
int main(){
std::cout << "Hello World!" << std::endl;
return 0;
}
</source>
|<pre><nowiki>
<source lang=cpp>
// 'Hello World!' program
#include <iostream>
int main(){
std::cout << "Hello World!" << std::endl;
return 0;
}
</nowiki></pre>
|}
|