-
-
Notifications
You must be signed in to change notification settings - Fork 878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ideas improvement for Quarto #2239
Comments
I was just coming to file an issue for the first item, as I just tripped myself up on that. Strong +1! |
This sounds concordant to the purpose of using the I can think of some scenarios that authors may want to globally set
|
Thanks for your input @atusy ! For the context, this came up in the context of output formats that would set
So usually, when So I would have thought the scenario would be
I did not seem to me as a good default as I view TBH, when we implemented Anyhow, this is detailed context on why I added this idea for a special hooks behavior for |
Oops, sorry for misunderstanding the behavior of the BTW, the context from |
I don't have a strong opinion on the behavior of the On a weakly related note, the complexity here comes from the fact that knitr parses the Rmd document using regular expressions, otherwise we could simply write verbatim content using the normal Markdown syntax, e.g., ````md
Some *verbatim* content.
```{r}
1 + 1
```
```` instead of ````{verbatim, lang="md"}
Some *verbatim* content.
```{r}
1 + 1
```
```` I have implemented a new parser in another package based on |
This is a list we can turn in potential issue of ideas for improving Quarto support. This comes from works done on the R part of Quarto using knitr
verbatim
engine and related should probably beecho: = TRUE
even when global isecho = FALSE
(e.g I want to hide all chunk source for my R code, but still want to show what I embeded)fenced.echo
in Quarto should show original code chunk content, even whencode
orfile
option is passedThis would probably require storing original code partition, in addition to yaml option partition.
message = NA
in a different that Quarto would support (using YAML options) #2375The text was updated successfully, but these errors were encountered: