Austin Cory Bart
Austin Cory Bart
I figured I'd break something if I tried that - having them in the main toolbar would be more ideal. Although I could also see the argument against clogging up...
Having a basic fallback sounds like a good idea to me! Yeah, the assumption would be to run the current file and that tests would be in it or inside...
Unfortunately, @emeryberger has been radio silent since he rejected our initial request for this. #11 I don't understand why he continues to make this a sticking point. It's extremely disappointing...
Others might have different perspectives, but I will voice my own experience last semester - the transition to OO is a tough one. Particularly in Python, my students struggled with...
Yes, I'd love to use this library but typescript support is important!
Very interesting! I'm still interested in it, though I'd have to setup some kind of very thin web frontend for our purposes. I'm thinking literally just a Run button and...
What a strange issue. I had the same issue, I needed to move mermaid to the top of the list: ```python extensions = ['sphinxcontrib.mermaid', 'sphinx.ext.autodoc', 'sphinx.ext.githubpages', 'sphinxjp.themes.basicstrap', 'sphinxcontrib.fulltoc', 'sphinx_tabs.tabs', ]...
What would these functions consume, how do they know what to produce, and how does an Environment override their behavior? Are they part of Report? Do they have separate global...
There's a part of me that wants to make a whole templating mini-lang for this like Jinja2 (so you could write `{name | make_name}`, but I suspect I'm off the...
So just writing this out a little bit: ```python # pedal.core.formatting def format_python_code(code): return f"{code}" ``` And then a command-line environment might do something like: ```python # pedal.environments.cli import pedal.core.formatting...