Nicolas Brichet

Results 256 comments of Nicolas Brichet

I wonder what would be the use case for cursors position from the server side document awareness. Is it intended for LLM use?

For reference, there is a very early stage project to manage secrets https://github.com/jupyterlab-contrib/jupyter-secrets-manager. The current implement only allows to associate frontend input to a secret, but it's meant to evolve.

Thanks @KrKOo for opening this. Can you please rebase on main, a #1928 should have fixed the unrelated test failures.

Looks good, thanks @KrKOo. Could you add a test on it ? Probably [in this file](https://github.com/jupyter/nbgrader/blob/main/nbgrader/tests/apps/test_nbgrader_generate_assignment.py).

Thanks @srdas for tracking this issue. This issue is related to collaborative document, not only chat. See https://github.com/jupyterlab/jupyter-collaboration/issues/455, and WIP at https://github.com/jupyterlab/jupyter-collaboration/pull/456 Also referenced in `jupyter-chat` https://github.com/jupyterlab/jupyter-chat/issues/113

This should be fixed, after https://github.com/jupyter-server/pycrdt/pull/256 and https://github.com/jupyter-server/pycrdt-websocket/pull/118, with an updated version of `pycrdt-websocket` ([v0.15.5](https://github.com/jupyter-server/pycrdt-websocket/releases/tag/v0.15.5))

Thanks @meneguzzi for opening this. > `nbgrader validate ;print $? ` should return (print here) a non-zero exit code if it fails any test Not sure about that, it will...

It is related to the HTML Sanitizer, that removes the `id` attribute (and `name`) of untrusted elements (since Jupyterlab 4.2.5, https://github.com/jupyterlab/jupyterlab/commit/88e24baac551196f9cb3de16bd060a7ab1597674). Consequently, the anchor no longer works. This attributes can...

The rendered markdown is probably saved, to be rendered again if not changed. If you change anything in the markdown cell then it is rendered again and the anchor works....

This should work ```json { "@jupyterlab/apputils-extension:sanitizer": { "allowNamedProperties": true } } ```