header_html {highlight} | R Documentation |
html renderer header and footer
Description
these functions build the header function and the footer function used by the html renderer
Usage
header_html(document, stylesheet)
footer_html(document)
Arguments
document |
logical. If |
stylesheet |
stylesheet to use. See |
Value
header and footer functions.
See Also
renderer_html
uses these functions to create a renderer
suitable for the ‘renderer’ argument of highlight
Examples
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()
[Package highlight version 0.5.1 Index]