Called automatically by render_chunk.

render_asis_chunk(x, options, inline = FALSE, ...)

Arguments

x

Character. Chunk output.

options

List. Options as passed from knitr.

inline

Logical. As passed from knitr. Is the result inline?

...

Other parameters passed from knitr.

Value

knitr object for printing.

Details

Currently called only when results is set to "asis", and even then render_html_chunk is used to print a knitr_kable. Function is provided here for fine-grained control as needed.

Examples

# NOT RUN {
# In knitr chunk options:
```{r render=surprisinglytidy::render_asis_chunk}
# some code here
```
# }