render markdown-formatted input into 'html'
Arguments
- md
Result of checks_to_markdown function.
- open
If
TRUE
, openhmtl
-rendered version in web browser.
See also
Other extra:
checks_to_markdown()
,
list_pkgchecks()
,
logfile_names()
Examples
if (FALSE) { # \dontrun{
checks <- pkgcheck ("/path/to/my/package")
# Generate standard markdown-formatted character vector:
md <- checks_to_markdown (checks)
# Directly generate HTML output:
h <- checks_to_markdown (checks, render = TRUE) # HTML version
# Or convert markdown-formatted version to HTML:
h <- render_md2html (md)
} # }