markdown (version 0.7.4)

renderMarkdown: Render markdown to an HTML fragment

Description

renderMarkdown transforms the markdown text provided by the user in either the file or text variable. The transformation is either written to the output file or returned to the user. The default rendering target is "HTML".

Usage

renderMarkdown(file, output = NULL, text = NULL, renderer = "HTML", 
    renderer.options = NULL, extensions = getOption("markdown.extensions"))

Arguments

renderer
the name of the renderer that will be used to transform the file or text.
renderer.options
options that are passed to the renderer. For HTML renderer options see markdownHTMLOptions.
file
a character string giving the pathname of the file to read from. If it is omitted from the argument list, then it is presumed that the text argument will be used instead.
output
a character string giving the pathname of the file to write to. If it is omitted (NULL), then it is presumed that the user expects the results returned as a character vector.
text
a character vector containing the markdown text to transform (each element of this vector is treated as a line in a file).
extensions
options that are passed to the markdown engine. See markdownExtensions.

Value

  • renderMarkdown returns NULL invisibly when output is to a file, and either character or raw vector depending on the renderer output type.

Details

markdown uses (and ships with) the popular Sundown library provided by GitHub. C stubs are available to implement new renderers.

See Also

markdownExtensions, markdownHTMLOptions, markdownToHTML.

For a description of the original markdown version:

http://daringfireball.net/projects/markdown/

The original Sundown library on github:

https://github.com/vmg/sundown

C stubs for writing new renders are in inst/include/markdown_rstubs.[ch].

Examples

Run this code
renderMarkdown(text = "Hello World!")

Run the code above in your browser using DataLab