From 57a883cdeb2e2ed8c9c25a6b10cdde70ae1837ee Mon Sep 17 00:00:00 2001 From: "Raymond R. Balise" Date: Sun, 11 Feb 2024 10:43:23 -0500 Subject: [PATCH] Add download of APA csl file. --- R/make_project.R | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/R/make_project.R b/R/make_project.R index 1ff51d5b..d38e346c 100644 --- a/R/make_project.R +++ b/R/make_project.R @@ -105,4 +105,9 @@ make_project <- function( paste0(path, "/the-new-england-journal-of-medicine.csl") ) + download.file( + "https://www.zotero.org/styles/apa", + paste0(path, "/apa.csl") + ) + }