engine_output {knitr} | R Documentation |
If you have designed a language engine, you may call this function in the end to format and return the text output from your engine.
engine_output(options, code, out, extra = NULL)
options |
a list of chunk options (usually this is just the object
|
code |
the source code of the chunk, to which the output hook
|
out |
the text output from the engine, to which the hook |
extra |
any additional text output that you want to include |
A character string generated from the source code and output using the appropriate output hooks.