downlit_md_* works by traversing the markdown AST generated by Pandoc.
It applies highlight() to CodeBlocks and autolink() to inline Code.
Use downlit_md_path() to transform a file on disk; use
downlit_md_string() to transform a string containing markdown as part
of a larger pipeline.
Needs pandoc 1.19 or later.
Value
downlit_md_path() invisibly returns output_path;
downlit_md_string() returns a string containing markdown.
Examples
if (rmarkdown::pandoc_available("1.19")) {
downlit_md_string("`base::t()`")
downlit_md_string("`base::t`")
downlit_md_string("* `base::t`")
# But don't highlight in headings
downlit_md_string("## `base::t`")
}
#> [1] "## `base::t`\n"