-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
stefanocoretta
committed
Jan 28, 2024
1 parent
fa9d09c
commit 9a0d25d
Showing
8 changed files
with
106 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: speakr | ||
Type: Package | ||
Title: A Wrapper for the Phonetic Software 'Praat' | ||
Version: 3.2.1 | ||
Version: 3.2.1.9000 | ||
Date: 2022-09-04 | ||
Authors@R: person("Stefano", "Coretta", email = "[email protected]", | ||
role = c("aut", "cre"), | ||
|
@@ -14,9 +14,10 @@ License: MIT + file LICENSE | |
URL: https://github.com/stefanocoretta/speakr | ||
BugReports: https://github.com/stefanocoretta/speakr/issues | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.1 | ||
RoxygenNote: 7.3.1 | ||
Imports: ggplot2, | ||
lifecycle, | ||
quarto, | ||
readr, | ||
stringr, | ||
tibble | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#' Install the Literate Markdown Tangler extension | ||
#' | ||
#' It installs the Quarto extension Literate Markdown Tangler, which provides | ||
#' users with literate programming tools. | ||
#' | ||
#' @return Nothing. Used for its side effects. | ||
#' | ||
#' @examples | ||
#' \dontrun{ | ||
#' add_lmt() | ||
#' } | ||
#' | ||
#' @export | ||
add_lmt <- function() { | ||
q_path <- quarto::quarto_path() | ||
if (!is.null(q_path)) { | ||
system(paste0("quarto add --no-prompt stefanocoretta/lmt")) | ||
cli::cli_alert_success("LMT extension installed!") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters