Learn R Programming

highlight (version 0.4.7)

header_html: 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 TRUE the built header and footer functions will return the beginning and end of a full html document. If FALSE, the built functions will only return the opening and closing
tags.
stylesheet
stylesheet to use. See getStyleFile for details on where the stylesheet can be located.

Value

header and footer functions.

See Also

renderer_html uses these functions to create a renderer suitable for the renderer argument of highlight

Examples

Run this code
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()

Run the code above in your browser using DataLab