-
Description(Not sure if this is a (even a?) bug of Quarto or something else, hence asking in Q&A.) I am learning to use Quarto. Playing around, I discovered that passing wrong arguments to the header YAML sometimes gets undetected and the file still renders. For instance, with ---
title: test
highlight-style: bad123
jupyter: python3
---
```{python}
import numpy as np
a = np.arange(15).reshape(3, 5)
a.shape
``` However, if I mess up the argument of Why is so? Is this expected behaviour? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
I opened an issue to improve this as Pandoc does error out if when a file, it's not ending with
.theme
.See #5881.
Thanks for the report.
Closing this thread.