Brendan

Results 703 comments of Brendan

hopefully, the resolution could also be used to address ``` (!) Unabridged API: unexpected kind 'example' (IGNORED) ``` I'm mainly posting this to subscribe to this issue 😉

I was curious, so I hard-coded an rst file with ```rst .. c:function:: int bar(int n, int a[static [n]); ``` and it worked fine with sphinx. So, now I'm thinking...

>On building my packages I'm using sphinx-build command with -n switch which shows warmings about missing references. These are not critical issues. @kloczek You should get in the habit of...

## Cannot reproduce with the given example zip project Not sure if this was a copy error, but the default project isn't actually given a path. ```py # in conf.py...

>> Well, that's not a trivial change... This idea may take me a while because of all the documented directives and corresponding options (some of which are listed as a...

Since this is an extension of sphinx (which is named as a dependency in `setup(requires=requires)`), I think the original intent was to let `pip install Sphinx>=3.0,

My initial approach would be to rely on doxygen more than breathe. By using the [`\anchor`](https://www.doxygen.nl/manual/commands.html#cmdanchor) cmd, you can then tell doxygen to `\ref` back to the declared anchor. Thus,...

> unfortunately no good solution that doesn't rely on manual work Agreed. I had to copy the relevant docs into my pybind11 wrapper definitions' docstrings. Then, I just used autodoc...

ubuntu-22.04 is now available for github runners: https://github.com/actions/runner-images/issues/5998 I can confirm building clang-tidy-14 using ubuntu-22.04 in CI does fix this.

@floe Not sure if this helps, but I've been trying to implement this concept in CircuitPython. Among my research, I found [this source code comment](https://github.com/lijuno/nRF24_BLE/blob/0356206edb41424c0d176535c2b3c158b8e54139/Arduino/nRF24_BLE_advertizer_demo/nRF24_BLE_advertizer_demo.ino#L164): >buf[L++] = 0x42; //PDU type,...