Drop version due to CRAN resubmission; Add examples as requested
diff --git a/man/add_footnote.Rd b/man/add_footnote.Rd
index e7104cc..d3839a3 100644
--- a/man/add_footnote.Rd
+++ b/man/add_footnote.Rd
@@ -18,7 +18,8 @@
`number`, `alphabet` and `symbol`.}
\item{threeparttable}{Boolean value indicating if a
-\href{https://www.ctan.org/pkg/threeparttable}{threeparttable} scheme should be used.}
+\href{https://www.ctan.org/pkg/threeparttable}{threeparttable} scheme should
+be used.}
}
\description{
Add footnote to your favorite kable output. So far this function
@@ -27,3 +28,8 @@
\code{threeparttable} package so you need to import this package in your
\code{YAML} header.
}
+\examples{
+x <- knitr::kable(head(mtcars), "html")
+add_footnote(x, c("footnote 1", "footnote 2"), notation = "symbol")
+
+}