Drop version due to CRAN resubmission; Add examples as requested
diff --git a/man/add_indent.Rd b/man/add_indent.Rd
index 2ee3d54..e141e70 100644
--- a/man/add_indent.Rd
+++ b/man/add_indent.Rd
@@ -15,3 +15,9 @@
 \description{
 Add indentations to row headers
 }
+\examples{
+x <- knitr::kable(head(mtcars), "html")
+# Add indentations to the 2nd & 4th row
+add_indent(x, c(2, 4))
+
+}