Fons van der Plas
Fons van der Plas
We could expose: - The current language? Or is it already exposed through the lang attribute? Document something. - The `t` function? Then PlutoUI can be localized through the same...
Normally, you can import libraries inside JS using the import syntax: ```js import confetti from 'https://cdn.skypack.dev/canvas-confetti' import { html, render, useEffect } from "https://cdn.jsdelivr.net/npm/[email protected]/preact/standalone.mjs" ``` In Pluto, this is currently...
_Work in progress_ This PR allows you to configure how notebook files are stored. Files can be stored: 1. As they are now – in executable order, with a section...
Use vscode extension API instead of websocket when detected. See the companion extension: https://github.com/JuliaComputing/pluto-vscode
This is an internal change to the way executions are triggered! Rather than the frontend requesting cell execution, cells have a timestamp in their state "when the user wanted the...
In some recent screen-sharing sessions with Pluto users, I found that the *Jump to definition* feature is too hidden: people don't know it exists, or they forgot the keyboard shortcut....
Fix https://github.com/JuliaPluto/PlutoUI.jl/issues/236 After this PR, the `` element that powers the `embed_display` will `await` all embedded `` elements to finish. # TODO: - [x] frontend test would be *great* but...