Tim Hoffmann

Results 731 comments of Tim Hoffmann

> I ping @timhoffm as the API lead to see if there is some input. I'm not enough of a transform expert to have a definite opinion. I can see...

I'm closing as this may be fixed upstream and there's no feedback. Please report back if the issue continues to exist.

I believe this has been superseeded by #29249.

From original PR: > `format_html()` is actually a poor man's pygments, but I did not want to introduce this dependency. However, switching to pygments would be straight forward, if one...

Since these objects are public to extensions, we need to be careful with the refactoring. But that's solvable, likely one has to introduce (pending?) deprecations on undesired attributes so that...

> It doesn't have to be anything formal, just sketch it out in powerpoint or whatever [drawio](https://app.diagrams.net/) is quite convenient for manual drawing.

Thanks for drawing the diagrams. Some remarks from a first look: - In *current*, `BuildEnvironment` contains references to `config` and `project`. There are no relational arrows drawn for these. Applies...

What I'm quite unclear about is how extensions fit in here. My understanding is that they are implicitly spread across the whole architecture: They can add config values, they may...

I believe we eventually should have a function-based/declarative approach to specifying rcParams, similar to `argparse`. e.g. ``` config.add_param(""figure.dpi", type=float, default=100, help="figure dots per inch") ``` This would bind all relevant...