The way QtCreator extracts information from HTML documentation files requires a very specific structure to work.
For example, a brief summary of MyClass should be placed between the <!-- $$$MyClass-brief --> and <!-- $$$MyClass --> marks in the corresponding HTML file. To search for a summary of methods, more complex labels are used.
Without this, a quick extract will not work, and a summary will not be displayed in QtCreator prompts.
Unfortunately, this is not well documented, and AFAIK may change in future releases.
If you're really interested, you can take a look at the sources of QtCreator ( htmldocextractor.cpp ). And I believe that Qt's help files (inside the Qt / Docs directory) can be considered working examples.
You can also try: doxygen2qtcreator .
the script inserts these Qt characters into the HTML files created by Doxygen (thus, before creating the qch file with qhelpgenerator). This worked for me, but I have not tested it with newer versions of Doxygen / Qt.
source share