-
Hi, I highly rely on high-order functions in my package, where some functions are returned by other functions, instead of defined straightforwardly. I see the Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I've started writing some docs but they aren't ready yet. Basically you pass one or more inspector extensions (pytkdocs isn't one) to the hybrid extension, and optionally pass a list of object paths to work on. The inspector extensions then run on the selected objects. I'll try to finish the docs soon 🙂 |
Beta Was this translation helpful? Give feedback.
-
So in the end, I've deprecated the hybrid extension (and more generally the visitor/inspector extension) in favor of a generic |
Beta Was this translation helpful? Give feedback.
So in the end, I've deprecated the hybrid extension (and more generally the visitor/inspector extension) in favor of a generic
Extension
which is more flexible and robust. See the docs: https://mkdocstrings.github.io/griffe/extensions/, and particularly the full example which can be a good example for your use-case: https://mkdocstrings.github.io/griffe/extensions/#full-example.