Python sphinx.ext.autodoc.ModuleDocumenter() Examples
The following are 12
code examples of sphinx.ext.autodoc.ModuleDocumenter().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
sphinx.ext.autodoc
, or try the search function
.
Example #1
Source File: conf.py From unicorn-hat-hd with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #2
Source File: conf.py From mote with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey patch the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineClassDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #3
Source File: conf.py From inky-phat with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #4
Source File: conf.py From scroll-phat with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey patch the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineClassDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #5
Source File: conf.py From phat-beat with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #6
Source File: conf.py From displayotron with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #7
Source File: conf.py From microdot-phat with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey patch the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineClassDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #8
Source File: conf.py From scroll-phat-hd with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey patch the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) # sphinx_app.add_autodocumenter(OutlineClassDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #9
Source File: conf.py From Piano-HAT with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #10
Source File: conf.py From button-shim with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #11
Source File: conf.py From skywriter-hat with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)
Example #12
Source File: conf.py From drum-hat with MIT License | 5 votes |
def __init__(self, directive, name, indent=u''): # Monkey path the Method and Function documenters sphinx_app.add_autodocumenter(OutlineMethodDocumenter) sphinx_app.add_autodocumenter(OutlineFunctionDocumenter) autodoc.ModuleDocumenter.__init__(self, directive, name, indent)