Jeremy Maitin-Shepard

Results 255 comments of Jeremy Maitin-Shepard

The stripping of the mathjax markers is probably just happening via the call to `astext()`: https://github.com/jbms/sphinx-immaterial/blob/ff1f9bb10a89a6c263c08be725ab0048dabc45a7/sphinx_immaterial/nav_adapt.py#L258

Yeah I think customization along those lines could make sense. We'd have to figure out the details of exactly how to do it, though. Currently the text conversion happens on...

The S3 support was added recently but we indeed need to clarify the limitations in the documentation. S3 lacks conditional write support and it is indeed possible with multiple concurrent...

This is not currently possible ---it wouldn't be too difficult but we'd have to look into the best way to accomplish this. Possibly we could add an option to open...

Have you considered using a blockSize of `[1, 100, 1500, 2000]`? Also, if you can provide some simple but complete example code that demonstrates the performance discrepancy between tensorstore and...

I think maybe `:cpp:func` will work if you specify the return type as well so that it can parse properly. As for supporting cross references based on the `id` directly...

I've built a prototype that addresses this issue in what I think is quite an elegant way. See https://github.com/rustwasm/wasm-bindgen/issues/3939

I was able to implement this as a plugin in a hacky way that nonetheless seems to work: ```javascript import { Resolver } from "@parcel/plugin"; import { dependencyToInternalDependency, getPublicDependency, }...

For some context, I am trying to use package conditions similarly to cargo features. In particular, I have a library that supports various data formats and protocols, and I'd like...

I think the chicken and egg issue can be solved by making nitpick_parameter_names and generate_parameter_objects options of the parent object (e.g. cpp:func) rather than the parameter object itself.