header_html {highlight} | R Documentation |
these functions build the header function and the footer function used by the html renderer
header_html(document, stylesheet)
footer_html(document)
document |
logical. If |
stylesheet |
stylesheet to use. See |
header and footer functions.
renderer_html
uses these functions to create a renderer
suitable for the ‘renderer’ argument of highlight
h <- header_html( document = FALSE )
h()
h <- header_html( document = TRUE, stylesheet = "default")
h()
f <- footer_html( document = TRUE )
f()
f <- footer_html( document = FALSE )
f()