albert-github
albert-github
I just ran the given [libaom-3.9.0.tar.gz](https://github.com/doxygen/doxygen/files/15444295/libaom-3.9.0.tar.gz) with the instructions from https://github.com/doxygen/doxygen/issues/10895#issue-2316321892 ``` $ cmake -S libaom-3.9.0 -B aom-build -DENABLE_TESTS=0 -DENABLE_EXAMPLES=0 $ (cd aom-build; doxygen doxyfile) ``` Some links are now...
The problem looks like to be caused by the way the `*.dox` are created, they are as `C` source files created and the result of the `doxygen -d commentcnv` gives:...
The place where the handling of the `\snippet{doc}` (and `\include{doc}`) has changed for a better and easier handling. The problem you face here is an unexpected side effect and I...
The problem look to be the addition of the ` * ` that was done for the 1.11.0 version when having a `/**` type of comment, maybe this addition should...
Very difficult problem. My first thought was use `\\ilinebr` instead of `\n` but a that moment the example that I have for #10858: [example.tar.gz](https://github.com/user-attachments/files/15836252/example.tar.gz) doesn't give good results anymore. Second...
For the compilation error on MacOS I've just pushed a proposed patch, pull request #10945
Indeed a very hard problem. Did some a first test with the example attached with https://github.com/doxygen/doxygen/issues/10935#issuecomment-2167683850 I see here:  though I expected:  especially seen the empty line at...
The main page and the first page looks OK but the Snippet page looks now like:  whilst this was  the later was expected or similar to the first...
Looks better and also it looks likes it fixes #10957- I create a Fortran example and saw some problems: - line numbers in the warnings are off by 1 for...
@doxygen Difficult problem. There is an interaction between the `startCommentBlock`, `yyextra->current->docLine = yyextra->lineNr;` (above it) and `handleCommentBlock`. I have to check how this is all handled in `C` / `Cpp`...