File: empty.R

package info (click to toggle)
r-cran-markdown 1.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: javascript: 131; sh: 126; makefile: 9
file content (7 lines) | stat: -rw-r--r-- 120 bytes parent folder | download
1
2
3
4
5
6
7
library(markdown)
f = tempfile()
if (file.create(f)) {
   mark_html(f, template = FALSE)
   mark_html(f)
   unlink(f)
}