databrickslabs / brickster

R Toolkit for Databricks
https://databrickslabs.github.io/brickster/
Apache License 2.0
49 stars 8 forks source link

Inline code does not render as the result, for remote blocks #59

Closed margaret-colville closed 3 months ago

margaret-colville commented 4 months ago

If I try to include a line of inline code for a remote block in my RMarkdown prose, it instead displays the command text in code styling. inline-text.zip

zacdav-db commented 3 months ago

Unfortunately this isn't something brickster can overcome. It's a limitation of knitr.

e.g. You cannot run this either:

`python 1+1`

Quarto only now can do this but it requires specific engine settings and still won't work for the brickster knitr engines.

e.g. This works for Quarto but not for RMarkdown

```{r}
radius <- 5

The radius of the circle is {r} radius



More on quarto inline **[here](https://quarto.org/docs/computations/inline-code.html)**