\name{tab2md}
|
|
\alias{tab2md}
|
|
\title{tab2md}
|
|
\usage{
|
|
tab2md(text)
|
|
}
|
|
\arguments{
|
|
\item{text}{A data.frame that you want to convert to Markdown.}
|
|
}
|
|
\description{
|
|
This function converts a data.frame into Markdown (md) format.
|
|
}
|
|
\examples{
|
|
table<-data.frame("Letter"=LETTERS[1:10], "Number"=1:10)
|
|
tab2md(table)
|
|
|
|
}
|