Re: [sphinx-users] get list of C functions/structs/etc...

2020-11-25 Thread Daniel Scott
On Fri, Sep 11, 2020, 8:16 AM Matias v01d wrote: > Hi, > we're using Sphinx to document a C interface. I would like to get a list > of all documented functions, structs, types, etc, generated and output > to a file in YAML/JSON or similar in order to use this to automatically > check API stabilit

Re: [sphinx-users] get list of C functions/structs/etc...

2020-09-12 Thread Komiya Takeshi
Hi, There is no such feature. You need to write a code to extract data from Sphinx. This is an example code to get the list of C objects. Please append this into your conf.py. ``` def on_env_check_consistency(app, env): domain = env.get_domain('c') for c_object in domain.get_objects():

[sphinx-users] get list of C functions/structs/etc...

2020-09-11 Thread Matias v01d
Hi, we're using Sphinx to document a C interface. I would like to get a list of all documented functions, structs, types, etc, generated and output to a file in YAML/JSON or similar in order to use this to automatically check API stability by comparing to previous releases. Is this possible someh