Note: You are viewing an old version of this page. View the current version.

Differences between version 13 and previous revision of CyberLeo/Syntax.

Other diffs: Previous Major Revision, Previous Author

Newer page: version 13 Last edited on Sunday, 19 April 2009 13:31:15 by CyberLeo Revert
Older page: version 12 Last edited on Sunday, 19 April 2009 13:17:23 by CyberLeo Revert
@@ -29,5 +29,14 @@
  puts arf 
  end 
 end 
 [wiki|link] 
+</code>  
+  
+C:  
+<code c>  
+#include <blah.h>  
+  
+int main (int argc, char **argv) {  
+ return 0  
+}  
 </code> 

version 13

Plugin RawHtml disabled. Raw HTML is only allowed in locked pages.
<?plugin RawHtml

<pre class="brush: c-sharp;">
function test() : String
{
        return 10;
}
</pre>

?>
This is sum verbatim shiz.
[even wiki links don't work|see]
<a href="blah">blah</a>

Naked:

This is a test
[wiki|link]

Ruby:

class Blah
  def meow
    puts arf
  end
end
[wiki|link]

C:

#include <blah.h>

int main (int argc, char **argv) {
  return 0
}