Search code examples
configurationprojectdoxygendocumentation-generationconfiguration-files

Doxygen project brief not including spaces


I am developing a project and using Doxygen for the documentation. In the config file, I have put PROJECT_BRIEF = dynamic and effective, but for some weird reason on the HTML, it is appearing as dynamicandeffictive without spaces in between. Is there some sort of configuration which stops this from happening?


Solution

  • As there are spaces in the PROJECT_BRIEF, the sentence should be in quotes like:

    PROJECT_BRIEF = "dynamic and effective"
    

    (Pity that you didn't tell us which version of doxygen you are using, so I tried it with the current version 1.8.18, but most likely it will have the same effect on older versions).