Template files
From EditPlus Wiki
I would add some code here, but I can't figure out how to add code without wiki formating it.
(see the discussion page for this page. --Justinsomnia 01:42, 26 Oct 2004 (EDT))
To avoid wiki formating just wrap the code with
<pre> </pre>
When you type this:
<pre>
- your formated
- code
- example
</pre>
You get this:
your formated code example
For example:
#include <stdio.h> int main(int argc, char *argv[]) { printf("Hello, world\n"); ^! return 0; }
- glia 15:02, 28 Nov 2004 (EST)