tags:

views:

18

answers:

1

We are going to publish API documentation on our web site. The documentation is generated by Doxygen from sources. The problem is that Doxygen generates weird file names (which is not so good for SEO). For example, for the source file RO4_Languages.h, Doxygen generates _r_o4___languages_8h.htm.

Is it possible to change name of generated files? I realize it's possible to change output using third-party tools/scripts (awk/sed/perl/etc), but I'm hoping to do it entirely through Doxygen

A: 

As far as I know changing the name of the generated files is not possible in Doxygen. I don't feel that the HTML output of the Doxygen is designed to be SEO-aware.

So if you really want to change the names, you should use the 3rd party tools you've mentioned.

Scorchio