-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
… (#6370) * improve yaml reading and handling of backticks. Closes #6344 and #6367. * smoke test * changelog * match backtick counts when inner code exists inside outer code cell
- Loading branch information
Showing
4 changed files
with
43 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
format: gfm | ||
keep-md: true | ||
jupyter: | ||
kernelspec: | ||
display_name: Python 3 (ipykernel) | ||
language: python | ||
name: python3 | ||
--- | ||
|
||
# example | ||
|
||
````{python} | ||
# using the f-string means the python string uses 2 curly braces in its syntax, | ||
# but the string itself is just single curly braces | ||
# otherwise, quarto tries to execute the code (a separate issue) | ||
# but quarto sees and interprets the double curly braces as a non-executable code block | ||
doc = f""" | ||
```{{python}} | ||
``` | ||
""" | ||
```` |