Mike Bostock

Results 751 comments of Mike Bostock

Just to be clear, you can currently render TeX using the built-in [`tex` template literal](https://observablehq.com/framework/lib/tex): ```md ${tex`f(x)=x^2`} ``` And the built-in `tex` fenced code block: ````md ```tex f(x)=x^2 ``` ````...

I think that issue is blocked by #597 which is a more substantial rearchitecting of the parser.

@Fil You can dismiss your review.

For now, the easiest way to do this would be to provide your own definition of `vg`, replacing the use of the default DuckDB client in [`vgplot.js`](https://github.com/observablehq/framework/blob/bbea2c504854c9e80672795207d12a781d0eed8b/src/client/stdlib/vgplot.js#L1-L10). That would look...

Not sure what else there is to do here. Maybe the `vg` built-in should default to consuming `sql._db` as its DuckDB instance rather than the internal `getDefaultClient` method, so that...

I guess my inclination is to have users explicitly list which DuckDB extensions they want, and where they come from. And then Framework can download them for self-hosting. So maybe...

@Fil In my previous comment I meant that could be specified in the project config. But we could also let it be specified in the page front matter, overriding the...

Right, so the config could say whether to load the extension explicitly or to let it autoload if desired. But in either case the installing (and optionally loading) of any...

Lots here! Excited about this. I’ll try to help this week.

The alternative you suggest is not desirable as it will cause (positive) zero values to swap to the bottom when all the other values are positive, rather than maintaining the...