Skip to content

Commit

Permalink
docs: some trail and error imgui attr docs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Nov 17, 2016
1 parent e10f99a commit f9e904f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,20 @@ def __getattr__(cls, name):
from git_lfs import fetch
fetch(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
else:
def skip(app, what, name, obj, skip, options):
if what == "module":
print(what, name, obj, skip, options)

# if 'members' in options:
# import ipdb; ipdb.set_trace()
#
# exit()
return skip

def setup(app):
app.connect("autodoc-skip-member", skip)

# else:
render_examples = True


Expand Down
3 changes: 2 additions & 1 deletion doc/source/reference/imgui.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ imgui package


.. automodule:: imgui
:members:
:members:
:undoc-members:

0 comments on commit f9e904f

Please sign in to comment.