pybind11_mkdoc
pybind11_mkdoc copied to clipboard
Pybind11 tool for making docstrings from C++ comments
Hi, I'm trying to run the `pybind11_mkdoc` in a single file called `score.h`, but I got this error below: ``` C:\Users\nyck\Desktop\maialib>python -m pybind11_mkdoc maiacore\include\maiacore\score.h Processing "'maiacore\include\maiacore\score.h'" .. Waiting for jobs...
Currently a function's or method's arguments are output with the following format: ``` Parameter ``arg1``: This is the description. This is a continued line of the description. Parameter ``arg2``: This...
Documentation not explicit on dependency on "libcmake-dev", not having it results in "'NoneType' object has no attribute 'encode'". Tested on master, on this file: https://github.com/EthicalML/vulkan-kompute/blob/master/single_include/kompute/Kompute.hpp I also tried on a...
My C++ code depends on an external library, so I add the flag `-I${nlohmann_SOURCE_DIR}/include` to ensure that `#include` can find the headers. Now `#include` doesn't really need to work for...
Hi, When trying to use the pybind11_mkdoc tool on the example in the [README](https://github.com/pybind/pybind11_mkdoc),it seems to work fine. However, if I add a standard include: ``` #include ``` I get...