• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

R/H11-Oct-2018-1,069474

build/H03-May-2022-

inst/H07-Aug-2019-1,6351,114

man/H06-Jun-2019-698571

src/H07-Aug-2019-5,9714,214

tests/H05-Dec-2018-265194

vignettes/H07-Aug-2019-5028

DESCRIPTIONH A D07-Aug-20192.1 KiB5756

MD5H A D07-Aug-20193.4 KiB6463

NAMESPACEH A D07-Jun-2019335 1412

NEWSH A D07-Aug-20197.1 KiB255153

README.mdH A D05-Dec-20181.8 KiB3423

README.md

1Markdown rendering for R
2=============================================================================
3
4[![Build Status](https://travis-ci.org/rstudio/markdown.svg)](https://travis-ci.org/rstudio/markdown)
5[![Downloads from the RStudio CRAN mirror](https://cranlogs.r-pkg.org/badges/markdown)](https://cran.r-project.org/package=markdown)
6
7Overview
8-----------------------------------------------------------------------------
9
10*Markdown* is a plain-text formatting syntax that can be converted
11to XHTML or other formats. This package provides R bindings to the
12[Sundown](https://github.com/vmg/sundown) markdown rendering library.
13
14The R function `markdownToHTML` renders a markdown file to HTML. Options
15controlling HTML output and supported markdown extensions can be optionally
16specified.
17
18The package also exports the underlying Sundown C extension API which
19enables creating and calling custom renderers using the `renderMarkdown`
20function.
21
22To learn more about markdown syntax see: <http://en.wikipedia.org/wiki/Markdown>
23
24This package is referred to as _R Markdown v1_ when combined with **knitr**. The primary output format is HTML. We do not plan to add new features to this package in the future, and please consider this package to be in the maintenance mode only. In 2014, we introduced [_R Markdown v2_](http://blog.rstudio.org/2014/06/18/r-markdown-v2/), which is based on Pandoc and **knitr**, and supports much more types of output formats. Please see https://rmarkdown.rstudio.com for details.
25
26License
27-----------------------------------------------------------------------------
28
29The markdown package is licensed under the GPLv2. See these files for
30additional details:
31
32- inst/COPYING - Markdown package license (GPLv2)
33- inst/NOTICE  - Copyright notices for additional included software
34