blob: 5df063e5f122e390ec82e823391f52403c582f42 [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}
brentthorne275dbbe2019-02-05 13:31:30 -05007\title{Posterdown HTML format (using bookdown::html_document2)}
8\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
Luke W Johnston79329cc2019-04-24 17:14:04 +020029\code{\link[rmarkdown:render:render]{rmarkdown:render::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
33\dQuote{BetterPoster} movement from twitter.
brentthorneedd17762019-04-09 12:35:49 -040034
35The output format \code{poster_betterport()} mimics the style of the
36\dQuote{BetterPoster} movement from twitter.
brentthorne275dbbe2019-02-05 13:31:30 -050037}
38\examples{
39
40\dontrun{
41library(rmarkdown)
42draft("MyArticle.Rmd", template = "posterdown_html", package = "posterdown")
43}
44}