albert-github

Results 1213 comments of albert-github
trafficstars

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: ![image](https://github.com/doxygen/doxygen/assets/5223533/ade774d8-1033-43bc-be28-16e9f20288ae) though I expected: ![image](https://github.com/doxygen/doxygen/assets/5223533/59cda1f4-3d4f-48ce-9ac6-11f695b3367d) especially seen the empty line at...

The main page and the first page looks OK but the Snippet page looks now like: ![image](https://github.com/doxygen/doxygen/assets/5223533/4b2eff34-389c-4821-9b63-335513d99c0c) whilst this was ![image](https://github.com/doxygen/doxygen/assets/5223533/209738bf-3476-41af-8ac9-b687e66bee10) 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`...