@@ -30,21 +30,23 @@ Code block options are included in a special comment at the top of the block (li
3030
3131Options available for customizing output include:
3232
33- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
34- | Option | Description |
35- +===========+===================================================================================================================================================================================================+
36- | ` eval ` | Evaluate the code chunk (if ` false ` , just echos the code into the output). |
37- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
38- | ` echo ` | Include the source code in output |
39- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
40- | ` output ` | Include the results of executing the code in the output (` true ` , ` false ` , or ` asis ` to indicate that the output is raw markdown and should not have any of Quarto's standard enclosing markdown). |
41- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
42- | ` warning ` | Include warnings in the output. |
43- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
44- | ` error ` | Include errors in the output (note that this implies that errors executing code will not halt processing of the document). |
45- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
46- | ` include ` | Catch all for preventing any output (code or results) from being included (e.g. ` include: false ` suppresses all output from the code block). |
47- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
33+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
34+ | Option | Description |
35+ +==============+===================================================================================================================================================================================================+
36+ | ` eval ` | Evaluate the code chunk (if ` false ` , just echos the code into the output). |
37+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
38+ | ` echo ` | Include the source code in output |
39+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
40+ | ` output ` | Include the results of executing the code in the output (` true ` , ` false ` , or ` asis ` to indicate that the output is raw markdown and should not have any of Quarto's standard enclosing markdown). |
41+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
42+ | ` warning ` | Include warnings in the output. |
43+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
44+ | ` error ` | Include errors in the output (note that this implies that errors executing code will not halt processing of the document). |
45+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
46+ | ` include ` | Catch all for preventing any output (code or results) from being included (e.g. ` include: false ` suppresses all output from the code block). |
47+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
48+ | ` renderings ` | Specify rendering names for the plot or table outputs of the cell, e.g. ` [light, dark] ` |
49+ +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
4850
4951Here's a Knitr example with some of these additional options included:
5052
0 commit comments