openPage {hwriter} | R Documentation |
Opens and closes a HTML page/document, allowing a sequential building of an HTML page.
openPage(filename, dirname=NULL, title=filename) closePage(page)
filename |
a character string containing the filename or the path of the HTML file to be created. |
dirname |
an optional character string containing the path of the directory where the file should be written. |
title |
an optional character string containing the title of the HTML page. |
page |
a page handle returned by a previous openPage call. |
openPage
opens a new file for writing and returns a page handle
which is used by hwrite
to append HTML elements in a current
page. A previous existing file will be overwritten.
closePage
ends the HTML page formatting, flushes the pending
writing operations and closes the file.
A connection which is a handle to the current HTML page.
Gregoire Pau, gpau@ebi.ac.uk, 2008
## Creates a new web page 'test.html' p <- openPage('test.html') hwrite('Iris example', p, center=TRUE, heading=1) hwrite(iris, p, row.bgcolor='#ffa') closePage(p) ## Opens a web browser browseURL('test.html')