Issue with the usage of =
vs :
for options in Quarto code chunks
#11574
-
Bug descriptionDescription: Steps to Reproduce:
Steps to reproduce---
title: "Quarto Bug Report"
format: html
---
## Quarto Bug Report - `=` vs `:`
### Example with `=` (fails)
```{r main table}
#| echo = FALSE
#| column = screen
#| out-width = 100% Expected behavior
Actual behaviorThe Your environment
Quarto check outputQuarto 1.5.57
[✓] Checking versions of quarto binary dependencies...
Pandoc version 3.2.0: OK
Dart Sass version 1.70.0: OK
Deno version 1.41.0: OK
Typst version 0.11.0: OK
[✓] Checking versions of quarto dependencies......OK
[✓] Checking Quarto installation......OK
Version: 1.5.57
Path: /Applications/quarto/bin
[✓] Checking tools....................OK
TinyTeX: (not installed)
Chromium: (not installed)
[✓] Checking LaTeX....................OK
Using: Installation From Path
Path: /Library/TeX/texbin
Version: 2022
[✓] Checking basic markdown render....OK
[✓] Checking Python 3 installation....OK
Version: 3.11.5
Path: /Users/josephbarbier/Desktop/30daysmapchallenge/venv/bin/python
Jupyter: 5.7.2
Kernels: python3
[✓] Checking Jupyter engine render....OK
[✓] Checking R installation...........OK
Version: 4.4.1
Path: /Library/Frameworks/R.framework/Resources
LibPaths:
- /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/library
knitr: 1.49
rmarkdown: 2.29
[✓] Checking Knitr engine render......OK |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Note: I don't know if that's the right repo |
Beta Was this translation helpful? Give feedback.
-
This is not a bug. All this is described in Quarto uses and recommends YAML, thus there should be nothing in between brackets beside the language and no equal signs anywhere. Recommended YAML syntax:
R inline syntax (not recommended in Quarto):
R multiline syntax (not recommended in Quarto):
|
Beta Was this translation helpful? Give feedback.
This is not a bug.
You are mixing knitr syntaxes which you should not do.
All this is described in
knitr
: https://yihui.org/knitr/options/Quarto uses and recommends YAML, thus there should be nothing in between brackets beside the language and no equal signs anywhere.
Recommended YAML syntax:
R inline syntax (not recommended in Quarto):
R multiline syntax (not recommended in Quarto):