Skip to content

Commit

Permalink
enable rendering of qmd files
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Jul 16, 2021
1 parent 2700baf commit 5273047
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rmarkdown
Type: Package
Title: Dynamic Documents for R
Version: 2.9.3
Version: 2.9.4
Authors@R: c(
person("JJ", "Allaire", role = "aut", email = "[email protected]"),
person("Yihui", "Xie", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0003-0645-5666")),
Expand Down
2 changes: 1 addition & 1 deletion R/render.R
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ render <- function(input,
}

# check whether this document requires a knit
requires_knit <- tolower(xfun::file_ext(input)) %in% c("r", "rmd", "rmarkdown")
requires_knit <- tolower(xfun::file_ext(input)) %in% c("r", "rmd", "rmarkdown", "qmd")

# remember the name of the original input document (we overwrite 'input' once
# we've knitted)
Expand Down

0 comments on commit 5273047

Please sign in to comment.