Drop version due to CRAN resubmission; Add examples as requested
diff --git a/R/add_indent.R b/R/add_indent.R
index 6e71a44..33ad6f7 100644
--- a/R/add_indent.R
+++ b/R/add_indent.R
@@ -4,6 +4,10 @@
#' @param positions A vector of numeric row numbers for the rows that need to
#' be indented.
#'
+#' @examples x <- knitr::kable(head(mtcars), "html")
+#' # Add indentations to the 2nd & 4th row
+#' add_indent(x, c(2, 4))
+#'
#' @export
add_indent <- function(kable_input, positions) {
if (!is.numeric(positions)) {