var fDesc=new Array(); fDesc[0] = "Webcpp converts programmer's source code into syntax highlighted HTML.
Web C Plus Plus is a command line utility that takes your source code, and converts it into an HTML file using a fully customizable syntax highlighting engine and colour schemes. This is useful if you want to post your code online and make it easier to read, or to make online programming tutorials.

Main Features:

- Syntax highlighting

- Colour schemes loaded from a file

- Automatically generated Cascading StyleSheets

- A choice between embedded CSS or external stylesheet

- Automatic filetype detection for higlighting

- Allows to force the filetype for highlighting

- Integration with other command-line tools via input and output piping

- The ability to add the line numbers

- The ability to jump to any line number via line anchors

- The ability of hyperlinking to lines of code and external files

- Generic support for unknown text based files"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }