Eric Larson

Results 1473 comments of Eric Larson

> What do you think about extracting the backlink capabilities, either to their own component working independently in this library or to a dedicated Sphinx extension that perhaps you'd use...

Nobody has thought of this that I know of. I have no problem with making this entry a `str` or list-like (tuple or list), where the `str` effectively (currently) gets...

In the general case, you could have interleaved stdout (print) and stderr (warn). In theory we could split the stdout and stderr into separate LoggingTee outputs. If we also preserved...

If you put `plot_gallery = 'True'` in your `conf.py` instead of `plot_gallery = True` in your `conf.py` it should work, as Sphinx will see it as a str var, then...

> Maybe we should fix this behavior rather than documenting the workaround? That would be nice. It might just require making the default configuration `'plot_gallery': 'true'` or something. Want to...

If literalinclude can work off of comments in RST, it would be trivial to add: ``` .. rst-class:: sphx-glr-script-out Out: .. sphx-glr-output-block-1-start .. code-block:: none .. sphx-glr-output-block-1-end ... Out: .....

I agree making things more modular (image capturing, etc.) is the way to go. So far we have found ways of doing this that maintains the status quo but allows...

(Even in cases where these things are going to be used by only one or two projects, which may or may not be the case here, modularization could and should...

@hayesall sounds reasonable to me, seems like something we could add in a `.. raw:: html` in our generated RST files without too much work. Would you be up for...