Compare commits

...

2 Commits

Author SHA1 Message Date
Winston Chang
29275b4444 Bump version to 0.13.2 2016-03-28 09:54:26 -05:00
Joe Cheng
bbf6f5faeb Update htmlTemplate docs for htmltools 0.3.5 2016-03-28 09:45:59 -05:00
4 changed files with 14 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
Package: shiny
Type: Package
Title: Web Application Framework for R
Version: 0.13.1
Date: 2016-02-17
Version: 0.13.2
Date: 2016-03-28
Authors@R: c(
person("Winston", "Chang", role = c("aut", "cre"), email = "winston@rstudio.com"),
person("Joe", "Cheng", role = "aut", email = "joe@rstudio.com"),

5
NEWS
View File

@@ -1,3 +1,8 @@
shiny 0.13.2
--------------------------------------------------------------------------------
* Updated documentation for `htmlTemplate`.
shiny 0.13.1
--------------------------------------------------------------------------------

File diff suppressed because one or more lines are too long

View File

@@ -2,13 +2,17 @@
\alias{htmlTemplate}
\title{Process an HTML template}
\usage{
htmlTemplate(filename, ..., document_ = "auto")
htmlTemplate(filename = NULL, ..., text_ = NULL, document_ = "auto")
}
\arguments{
\item{filename}{Path to an HTML template file.}
\item{filename}{Path to an HTML template file. Incompatible with
\code{text_}.}
\item{...}{Variable values to use when processing the template.}
\item{text_}{A string to use as the template, instead of a file. Incompatible
with \code{filename}.}
\item{document_}{Is this template a complete HTML document (\code{TRUE}), or
a fragment of HTML that is to be inserted into an HTML document
(\code{FALSE})? With \code{"auto"} (the default), auto-detect by searching