albert-github

Results 1742 comments of albert-github

Regarding the second solution: What happens whe you replace the alias: ``` ALIASES += "csv_table{3::}=.. csv-table:: \1^^\3 :header: \2^^" ``` by ``` ALIASES += "csv_table{3::}=.. csv-table:: \1^^\3\ :header: \2^^" ```...

Regarding the first solution: It will indeed be a bit problematic when a "replaced" `ALIASES` is used multiple times in a one block, In the given example though I think...

What happens when you use: ``` ALIASES += "csv_table{3::}=.. csv-table:: \1\n\3 :header: \2^^" ```

what happens when you use: ``` ALIASES += "csv_table{3::}=.. csv-table:: \1^^\3 :header: \2^^\3 :class: sphinx-datatable^^" ``` (Note the number of spaces after `\3`) How should the output look like?

Seen the result in https://github.com/doxygen/doxygen/issues/11172#issuecomment-2396636166 looks like your problem is solved (correct?). Does the complex example work as well? - which doxygen results are you using to generate the results?...

I get warnings: ``` classDocumentationExample.cpp:36: warning: Invalid list item found classDocumentationExample.cpp:41: warning: unexpected command endiverbatim ``` - Is there a `@rst` missing? Also the code in the `.c` file is...

As noted the problem is due to the number of spaces with which the commentblock is indented (i.e. the spaces before the `/**` / `*`). It looks like a subtle...

I've just pushed a proposed patch, pull request #11175

@TruongMinh89 please test the proposed patch (as far as you aren't already doing it) and report back.

I don't think the example is correct as it has no spaces in front of the `#`. When adding these I can reproduce the problem. Also there is no settings...