File: has_pandoc.R

package info (click to toggle)
r-cran-simplermarkdown 0.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 392 kB
  • sloc: makefile: 2
file content (5 lines) | stat: -rw-r--r-- 82 bytes parent folder | download | duplicates (2)
1
2
3
4
5

has_pandoc <- function() {
  x <- Sys.which("pandoc")
  !is.na(x) && (x != "")
}