quarto-webr
quarto-webr copied to clipboard
Community developed Quarto Extension to Embed webR for HTML Documents, RevealJS, Websites, Blogs, and Books.
Presently, one has to right-click to download the image locally. Let's maybe allow an image button to be added on hover that grabs the canvas content. ```js function downloadCanvas(canvas) {...
We're missing some features of R syntax that would be made available with: https://github.com/microsoft/monaco-editor/blob/21db3aebf09e6e3c43720084e270870184855642/src/basic-languages/r/r.ts We likely need to register: ```js monaco.languages.register({ id: 'r' }); monaco.languages.setMonarchTokensProvider('r', ) monaco.languages.setLanguageConfiguration('r', ) ``` where...
Will open up a new issue if need be, but is there a way to capture new code written on the slides to be saved. _Originally posted by @jgeller112 in...
## Bug If a line exceeds the width of the window, the text is hidden as the user must scroll the editor over to the right.  code options quarto offers, e.g. ```md The value of `x` is `{webr-r} x`. ``` Alternatively, we might need to...
It would be great if we had some key strokes to quickly jump between code cells, such as go to previous/next cells.
With dynamic inputs, we aim to simplify how code inside a code cell can be executed and automatically update its result. The result is a series of input fields that...
Need to incorporate `NODEFS` mounting code to interact with the R package cache ```js await webR.FS.mkdir('/data') await webR.FS.mount('NODEFS', { root: './extra' }, '/data'); ``` More options for sharing https://docs.r-wasm.org/webr/latest/mounting.html https://docs.r-wasm.org/webr/latest/packages.html#mounting-an-r-library-filesystem-image