1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/raw_block.R
\name{raw_block}
\alias{raw_block}
\title{Return a raw chunk of text that can be included in the pandoc parse tree}
\usage{
raw_block(content, language = "markdown")
}
\arguments{
\item{content}{a character vector containing the content to include
in the final document.}
\item{language}{language of the content}
}
\value{
Returns a \code{list} with the correct structure for a \code{RawBlock} in
the pandoc parse tree.
}
\description{
Return a raw chunk of text that can be included in the pandoc parse tree
}
\details{
A raw block is included as is into the final markdown document. This can
be used for example to include raw chunks of markdown.
}
|