File: empty.R

package info (click to toggle)
r-cran-markdown 1.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 552 kB
  • sloc: ansic: 4,618; sh: 32; makefile: 7
file content (7 lines) | stat: -rw-r--r-- 134 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
library(markdown)
f = tempfile()
if (file.create(f)) {
   markdownToHTML(f, fragment.only = TRUE)
   markdownToHTML(f)
   unlink(f)
}