|
HtmlFix2Unix utility is used to convert case insensitive html links to case sensitive versions by lowercasing, or uppercasing them so that the html files can be used on a Unix like case sensitive system.
We needed this tool to convert our Math Parser API documentation. The html documents were generated
on Windows by Visual Studio and they contained html links, images and JavaScript that was not case sensitive. For example, html could point to an image <img src=”Abc.jpg”> where as on disk, the
image name was actually “abc.jpg”. This kind of increpency made it impossible to place this documenation on our Linux servers. So we developed HtmlFix2Unix to convert relevant portions of our html to
lowercase.
|