We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
message = NA
Since 1.42, if a user wants the logging in console, message = NA or warning = NA needs to be used.
warning = NA
Though Quarto is using YAML format for options
#| message: false
As NA is not something in YAML spec, writing it like this does not work
NA
#| message: NA
It required to use !expr
!expr
#| message: !expr NA
which adds a layer of explanation.
It would be greate to have another way that can be used in YAML directly.
Or we could also recognized message = "NA" in Quarto context as a the same as message = NA
message = "NA"
The text was updated successfully, but these errors were encountered:
Sure, we can support the character string "NA".
"NA"
Sorry, something went wrong.
ec7715c
Done.
No branches or pull requests
Since 1.42, if a user wants the logging in console,
message = NA
orwarning = NA
needs to be used.Though Quarto is using YAML format for options
As
NA
is not something in YAML spec, writing it like this does not workIt required to use
!expr
which adds a layer of explanation.
It would be greate to have another way that can be used in YAML directly.
Or we could also recognized
message = "NA"
in Quarto context as a the same asmessage = NA
The text was updated successfully, but these errors were encountered: