Reppo for internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
311 B

  1. \name{tab2md}
  2. \alias{tab2md}
  3. \title{tab2md}
  4. \usage{
  5. tab2md(text)
  6. }
  7. \arguments{
  8. \item{text}{A data.frame that you want to convert to Markdown.}
  9. }
  10. \description{
  11. This function converts a data.frame into Markdown (md) format.
  12. }
  13. \examples{
  14. table<-data.frame("Letter"=LETTERS[1:10], "Number"=1:10)
  15. tab2md(table)
  16. }