I have an rmarkdown file with an intentional error in a python chunk. I want the statement evaluated, the error message returned and the rest of the documented knitted.
This does not work:
```{python error=TRUE}
dollar_tree_list = soup.find_all(class = 'itemlist')
I get the error message, but the knitting process stops. It doesn't matter if error=FALSE or if this option is applied to the global options. (Also, the final 3 backticks are in my code, but I'm having trouble showing that in this interface).
If it matters, I am knitting to ioslides just using the button in RStudio.
Any ideas?