chunk-callbacks | R Documentation |
Register a callback function to be executed after a chunk within an R Markdown document is run.
registerChunkCallback(callback)
unregisterChunkCallback(id = NULL)
callback |
A callback function. See Chunk Callbacks for more details. |
id |
A unique identifier. |
For registerChunkCallback()
, a unique identifier. That identifier
can be passed to unreigsterChunkCallback()
to de-register a
previously-registered callback.
The callback
argument should be a function accepting two parameters:
chunkName
: The chunk label,
chunkCode
: The code within the chunk.
The function should return an R list of HTML outputs, to be displayed after that chunk has been executed.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.