Пример #1
0
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    try:
        import runipy # noqa (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
Пример #2
0
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    try:
        import runipy # pyflakes:ignore (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
Пример #3
0
def setup(app):
    for js in js_includes:
        app.add_javascript(js)

    try:
        import runipy # noqa (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
Пример #4
0
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    for js in js_includes:
        app.add_javascript(js)

    try:
        import runipy  # noqa (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
Пример #5
0
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    nbbuild.setup(app)