quarto-webr icon indicating copy to clipboard operation
quarto-webr copied to clipboard

Community developed Quarto Extension to Embed webR for HTML Documents, RevealJS, Websites, Blogs, and Books.

Results 34 quarto-webr issues
Sort by recently updated
recently updated
newest added

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) {...

t: feature-request
p: low

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...

t: feature-request
p: medium

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...

t: feature-request
p: low

## 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. ![Lesson containing code that...

t: bug
p: medium
s: confirmed

Offer the code exercise feature from {learnr}. This should match more closely with the desire of https://github.com/coatless/quarto-webr/issues/25 Sample exercise: https://github.com/rstudio/learnr/blob/aeb8144f5335a1132dbb1c0a0302fd2f3e94b875/inst/tutorials/ex-data-filter/ex-data-filter.Rmd#L236 Proposed markup: ````md ```{webr-r} #| label: ex01 #| exercise: true...

t: feature-request
p: low

We've heard from a few folks that having a popup showing an environment pane similar to RStudio would be useful. This can be either a "page" option or we can...

t: feature-request
p: medium

It would be nice to be able to match the [inline](https://quarto.org/docs/prerelease/1.4/inline.html) code options quarto offers, e.g. ```md The value of `x` is `{webr-r} x`. ``` Alternatively, we might need to...

t: feature-request

It would be great if we had some key strokes to quickly jump between code cells, such as go to previous/next cells.

t: feature-request

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...

t: feature-request
p: low

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

t: feature-request
p: low