html_code_block | R Documentation |
This simulates what rmarkdown
/ knitr
do to the output of an R markdown
chunk, at least as of rmarkdown
1.10. It is useful when we override the
knitr
output hooks so that we can have a result that still looks as if it
was run by knitr
.
html_code_block(x, class = "fansi-output")
x |
character vector |
class |
character vectors of classes to apply to the PRE HTML tags. It is the users responsibility to ensure the classes are valid CSS class names. |
character(1L) x
, with <PRE> and <CODE> HTML tags
applied and collapsed into one line with newlines as the line separator.
html_code_block(c("hello world"))
html_code_block(c("hello world"), class="pretty")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.