EVOLUTION-MANAGER
Edit File: header_html.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: html renderer header and footer</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for header_html {highlight}"><tr><td>header_html {highlight}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>html renderer header and footer</h2> <h3>Description</h3> <p>these functions build the header function and the footer function used by the html renderer </p> <h3>Usage</h3> <pre> header_html(document, stylesheet) footer_html(document) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>document</code></td> <td> <p>logical. If <code>TRUE</code> the built header and footer functions will return the beginning and end of a full html document. If <code>FALSE</code>, the built functions will only return the opening and closing <span class="samp"><pre></span> tags.</p> </td></tr> <tr valign="top"><td><code>stylesheet</code></td> <td> <p>stylesheet to use. See <code>getStyleFile</code> for details on where the stylesheet can be located.</p> </td></tr> </table> <h3>Value</h3> <p>header and footer functions. </p> <h3>See Also</h3> <p><code><a href="renderer_html.html">renderer_html</a></code> uses these functions to create a renderer suitable for the <span class="samp">renderer</span> argument of <code><a href="highlight.html">highlight</a></code> </p> <h3>Examples</h3> <pre> 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() </pre> <hr /><div style="text-align: center;">[Package <em>highlight</em> version 0.5.0 <a href="00Index.html">Index</a>]</div> </body></html>