quarto-webr v0.0.4 Released - Custom Code Cell Name

software-releases
quarto
webr
Author

TheCoatlessProfessor

Published

March 30, 2023

With version 0.0.4 of quarto-webr, we’ve sought to take advantage of a new Quarto feature that allows for custom code cell names. This feature is particularly useful for webR code cells as it allows for the code cell to be named in a manner that is more descriptive while also allowing for the code cell to be evaluated prior to rendering the document.

For more details on the changes, please see the news entry below

quarto-webr news file entry for version 0.0.4 (2023-03-30)

Breaking Changes

  • We’ve transitioned to using the {webr-r} code cell designation from our original {webr} designation.
    • The {webr-r} tag allows for code cell evaluation prior to rendering the document
    • Moreover, the {webr-r} component does not need to be registered under the knitr compute engine.

Please update code cells from:

```{webr}

```

To:

```{webr-r}

```

GitHub Changelog