python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
In Sphinx, when using sphinx.ext.autosummary, how do I exclude base class members?
I am using Sphinx to document a code base docString; in python. I have code like this -
class foo(np.ndarray):
def foo_func():
pass
class bar(foo):
def bar_func():
pass
When usi...
Phil
Votes: 0
Answers: 0
`Jupyter-book build` taking too much RAM when building 4.5K notebooks
Background
I have preprocessed over 4.5K jupyter notebooks.
I would like to use jupyter-book to build a book from the processed notebooks.
I have execute_notebooks: "off" in my jupyter-book ...

Avi Vajpeyi
Votes: 0
Answers: 0
How do I reference a relative path in Jupyter-book
In Jupyter-book, I am creating a _toc.yml file. I have something like -
- caption: Tutorials
chapters:
- file: ../../notebooks/some_notebook
I get the exception -
home/code/nwb_datajoint/docs/web...
Phil
Votes: 0
Answers: 0
How to link to non-markdown files in Jupyter book?
How do I link to a non-markdown file in a Jupyter Book? I would expect that [some text](relative-link) works, but this is not the case.
For example, starting from a brand new Jupyter Book suppose in t...
Andrej Bauer
Votes: 0
Answers: 1