R/md-text.R

Defines functions md_text

Documented in md_text

#' Markdown textual content
#'
#' Simple wrapper around [glue::as_glue()]. Take a character vector and return a
#' glue vector.
#'
#' @details
#' Any characters not given an interpretation by the \[other\] rules will be
#' parsed as plain textual content.
#' @param x A character vector.
#' @return A `glue` vector.
#' @family inline functions
#' @examples
#' md_text("foo")
#' @importFrom glue as_glue
#' @export
md_text <- function(x) {
  glue::as_glue(x)
}

Try the gluedown package in your browser

Any scripts or data that you put into this service are public.

gluedown documentation built on Nov. 2, 2023, 5:48 p.m.