-
Notifications
You must be signed in to change notification settings - Fork 1
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
Kiernan Nicholls
committed
Oct 6, 2023
1 parent
f8df254
commit 060c9b5
Showing
7 changed files
with
77 additions
and
13 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
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,4 +1,4 @@ | ||
# gluedown (development version) | ||
# gluedown 1.0.7 | ||
|
||
# gluedown 1.0.6 | ||
|
||
|
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,26 @@ | ||
#' @title gluedown: A package to format character vectors with markdown. | ||
#' | ||
#' @description The `gluedown` package helps transition from R's powerful | ||
#' vectors to formatted markdown text. The functions use [glue::glue()] to | ||
#' wrap character vectors in valid markdown syntax. In combination with the | ||
#' `knitr` package, this allows users to directly print R vectors as formatted | ||
#' text for improved clarity and readability. | ||
#' | ||
#' @section Glue wrappers: | ||
#' The `md_*()` functions return `glue` objects, which are returned using | ||
#' [cat()] by default. This allows users to both manipulate the formatted | ||
#' strings as they would with any character vector and still present the | ||
#' string to the user when an `knitr` chunk option is set to return code | ||
#' results `'asis'`. | ||
#' | ||
#' @section Other wrappers: | ||
#' The [md_table()] and [md_convert()] functions wrap around [knitr::kable()] | ||
#' and [markdown::markdownToHTML()] respectively. The later allows users to | ||
#' convert `md_*()` outputs to HTML fragments. | ||
#' | ||
#' @keywords internal | ||
"_PACKAGE" | ||
|
||
## usethis namespace: start | ||
## usethis namespace: end | ||
NULL |
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.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.