Results 245 comments of Geoffrey Poore

Are you using `bgcolor` to set a background color? It looks like there may be a length limitation when `bgcolor` is used, in which case using a package like `tcolorbox`,...

I'm getting the same result for both of your examples, which is no line break. `breaklines` is really designed to work with spaces, or spaces plus `breakbefore` or `breakafter`. By...

It looks like redefining `\FV@FVSpaceToken{ }` already broke things. You could try this instead: ``` \makeatletter \def\FV@Break@AfterTokenBreak#1{% \let\FV@LastToken=#1% \@ifnextchar\FV@Undefined% {}% {\ifthenelse{\boolean{FV@BreakAfterGroup}}% {\ifx\@let@token#1\relax \g@addto@macro{\FV@TmpLine}{#1}% \let\FV@Break@Next\FV@Break@Scan \else \ifx\@let@token\bgroup\relax \g@addto@macro{\FV@TmpLine}{#1}% \let\FV@Break@Next\FV@Break@AfterTokenBreak@Group \else \g@addto@macro{\FV@TmpLine}{#1\FancyVerbBreakAfterBreak}%...

I don't know why you would get different results. I would expect both to be the same given how the typesetting code works, and that is what happens on my...

You could try something like this on the *.pytxcode: ```python import collections import pathlib import sys sources = collections.defaultdict(list) pytxcode = sys.argv[1] with open(pytxcode, encoding='utf8') as f: in_source = False...

When I created `pyconcode`, I wanted to make sure that any code that produced output wasn't accidentally overlooked. But I wasn't thinking about cases like `plot()`, which produce ignorable output....

If you can give me a short example document that illustrates the sort of output you'd like to suppress, I can look into that when I'm making the other modifications.

@reckoner The solution I am considering for #55 will probably give you what you want for this case as well. It should be possible to execute code within the console...

I feel like there may need to be some sort of start token for each row. The exclamation point is already being used for solutions/important information, so another character would...

Adding Jupyter kernel support has been on the long-term plan for a few years now as part of a complete rewrite of the code execution core, but unfortunately that project...