Replies: 1 comment 2 replies
-
We need a bit more information than a keyboard shortcut here in order to help 😅 Which IDE? Which version? Which operating system? Jupyter Notebook or flat Qmd file? R code only? You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
When sending code to run using ctrl+shift+enter (run entire cell) the cell won't execute if there is more than one line of code.
E.g.,
This will run:
This WON'T run (in fact the run cell button is completely unresponsive
Any ideas? This was not an issue I was having just a few weeks ago.
Beta Was this translation helpful? Give feedback.
All reactions