blob: e4decbd6d60a9c186cc74387cb781eed306882c9 [file] [log] [blame]
brentthorne275dbbe2019-02-05 13:31:30 -05001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/posterdown_html.R
3\name{posterdown_html}
4\alias{posterdown_html}
brentthorne75828bf2019-04-07 23:37:15 -04005\alias{posterdown_betterland}
brentthorneedd17762019-04-09 12:35:49 -04006\alias{posterdown_betterport}
brentthorne8ee00762019-04-24 12:57:51 -04007\title{Posterdown HTML format (using pagedown::poster_relaxed)}
brentthorne275dbbe2019-02-05 13:31:30 -05008\usage{
9posterdown_html(..., template = find_resource("posterdown_html",
10 "template.html"), css = NULL)
brentthorne75828bf2019-04-07 23:37:15 -040011
12posterdown_betterland(...,
13 template = find_resource("posterdown_betterland", "template.html"),
14 css = NULL)
brentthorneedd17762019-04-09 12:35:49 -040015
16posterdown_betterport(...,
17 template = find_resource("posterdown_betterport", "template.html"),
18 css = NULL)
brentthorne275dbbe2019-02-05 13:31:30 -050019}
20\arguments{
21\item{...}{Additional arguments to \code{rmarkdown::html_document}}
22
23\item{template}{See \code{\link{html_paged}()}.}
24
25\item{css}{See \code{\link{html_paged}()}.}
26}
27\value{
28R Markdown output format to pass to
brentthorne8ee00762019-04-24 12:57:51 -040029\code{\link[rmarkdown:render]{rmarkdown::render()}}
brentthorne275dbbe2019-02-05 13:31:30 -050030}
31\description{
brentthorne75828bf2019-04-07 23:37:15 -040032The output format \code{poster_betterland()} mimics the style of the
brentthorne8ee00762019-04-24 12:57:51 -040033BetterPoster movement from twitter.
brentthorneedd17762019-04-09 12:35:49 -040034
35The output format \code{poster_betterport()} mimics the style of the
brentthorne8ee00762019-04-24 12:57:51 -040036BetterPoster movement from twitter.
brentthorne275dbbe2019-02-05 13:31:30 -050037}
brentthorne164b9a82019-10-09 10:08:13 -040038\examples{
39\donttest{
40file <- file.path(tempdir(),"foo.rmd")
41rmarkdown::draft(file, template="posterdown_html", package="posterdown")
42}
43
44}