Fabian Iwand

Results 288 comments of Fabian Iwand

... I meant to assign this one to myself, but apparently I can't. 🤔

No error, you just end up with a bunch of modified files because the lowercase version also replaces the mixed-case one. E.g., with ``` docs/python/generated/pyarrow.Array.html docs/python/generated/pyarrow.array.html ``` `docs/python/generated/pyarrow.Array.html` will be...

@kou @amoeba To double-check before I file a PR: do I still have the go-ahead for the suggested solution?

@greenmtnboy Afaik the config options `allowFullHTTPReads` and `reliableHeadRequests` are meant to address that, but they may come with their own issues (see e.g. #1984).

@szarnyasg Is my understanding correct that Postgres' binary transfer mode requires TCP, and support would therefore be limited to Node?

Another side effect of this is that selecting text in an axis label will pin the tooltip: https://github.com/observablehq/plot/assets/322014/24534f16-7915-4018-aa8f-cff197dcd028

Sounds good to me! Ideally we also show a hint like "you recently deployed to" to explain the default. I'll file a PR to have /cli/user return the additional metadata.

Looking at Vitepress, the current implementation feels fairly messy to me: - The [markdown link plugin](https://github.com/vuejs/vitepress/blob/179ee621d99b3c14e2e098e3b786465cbeaeab9a/src/node/markdown/plugins/link.ts#L39) calls [isExternal()](https://github.com/vuejs/vitepress/blob/9183680847affa77c05135e895f6a7cf273b8ef0/src/shared/shared.ts#L82-L84) (which just tests against EXTERNAL_URL_RE) to then define a list of attributes...

> to pass target="_self" to the VPLink That would still not make it past the `EXTERNAL_URL_RE.test(props.href)` check in `VPLink` though?