Lines 1-11
Link Here
|
1 |
c2html is a syntax highlighter for C source code that produces a |
1 |
C2html is a syntax highlighter for C source code that produces a |
2 |
highlighted html file as output. The output can be read by any |
2 |
highlighted html file as output. |
3 |
graphical WWW-Browser. If the browser understands the tags to change |
|
|
4 |
font colors (as Netscape does) the output will look like highlighted |
5 |
by emacs. Otherwise it will not look so nice, but readability is |
6 |
increased too. |
7 |
|
3 |
|
8 |
c2html can also work as a CGI program and convert your sources on the |
4 |
C2html offers the following features: |
9 |
fly. To use in this way copy it to your /cgi-bin directory and |
5 |
|
10 |
configure your webserver to call c2html for *.c and *.h files. An |
6 |
- fast (single pass conversion using flex) |
11 |
example that works with Apache is described in the manpage. |
7 |
- doesn't change formatting - only adds <FONT COLOR=#XXXX> tags |
|
|
8 |
and properly escapes non-ascii characters |
9 |
- easy integration with webservers - browse your sources colourized! |
10 |
- gzips http output for browsers to save bandwidth (only in CGI mode) |
11 |
- documentation and manpage included |
12 |
|
13 |
Please use the java2html port for converting C++ sources! |
14 |
Homepage: http://user.cs.tu-berlin.de/~schintke/x2html/index.html |