Move ids poster to posterdown_ids and restore original posterdown_html

Change-Id: Ib44b4020134c403a2946d0fc4b79777e9ecbe3ac
diff --git a/man/posterdown.Rd b/man/posterdown.Rd
index b75eab2..b7f2097 100644
--- a/man/posterdown.Rd
+++ b/man/posterdown.Rd
@@ -3,7 +3,6 @@
 \docType{package}
 \name{posterdown}
 \alias{posterdown}
-\alias{posterdown-package}
 \title{posterdown package}
 \description{
 This package creates posters for conferences
diff --git a/man/posterdown_html.Rd b/man/posterdown_html.Rd
index e4decbd..0fad74d 100644
--- a/man/posterdown_html.Rd
+++ b/man/posterdown_html.Rd
@@ -2,33 +2,49 @@
 % Please edit documentation in R/posterdown_html.R
 \name{posterdown_html}
 \alias{posterdown_html}
+\alias{posterdown_ids}
 \alias{posterdown_betterland}
 \alias{posterdown_betterport}
 \title{Posterdown HTML format (using pagedown::poster_relaxed)}
 \usage{
-posterdown_html(..., template = find_resource("posterdown_html",
-  "template.html"), css = NULL)
+posterdown_html(
+  ...,
+  template = find_resource("posterdown_html", "template.html"),
+  css = NULL
+)
 
-posterdown_betterland(...,
+posterdown_ids(
+  ...,
+  template = find_resource("posterdown_ids", "template.html"),
+  css = NULL
+)
+
+posterdown_betterland(
+  ...,
   template = find_resource("posterdown_betterland", "template.html"),
-  css = NULL)
+  css = NULL
+)
 
-posterdown_betterport(...,
+posterdown_betterport(
+  ...,
   template = find_resource("posterdown_betterport", "template.html"),
-  css = NULL)
+  css = NULL
+)
 }
 \arguments{
 \item{...}{Additional arguments to \code{rmarkdown::html_document}}
-
-\item{template}{See \code{\link{html_paged}()}.}
-
-\item{css}{See \code{\link{html_paged}()}.}
 }
 \value{
 R Markdown output format to pass to
 \code{\link[rmarkdown:render]{rmarkdown::render()}}
+
+R Markdown output format to pass to
+\code{\link[rmarkdown:render]{rmarkdown::render()}}
 }
 \description{
+The output format \code{poster_ids()} mimics the IDS Mannheim
+corporate design posters.
+
 The output format \code{poster_betterland()} mimics the style of the
 BetterPoster movement from twitter.
 
@@ -41,4 +57,9 @@
 rmarkdown::draft(file, template="posterdown_html", package="posterdown")
 }
 
+\donttest{
+file <- file.path(tempdir(),"foo.rmd")
+rmarkdown::draft(file, template="posterdown_ids", package="posterdown")
+}
+
 }