R/fwrap_lines.R

Defines functions f_wrap_lines

#' Wrap lines in rmd output documents
#' @details Does not have any options or arguments. It modifies 'knitr' settings and creates a function that is able to wrap lines.
#'
#' @return A list with 'knitr' setting and functions to wrap lines. Used for its side effects on 'knitr'
#'
#'
#' @noRd
f_wrap_lines <- function(){
  hook_output <- knit_hooks$get('output')
  knit_hooks$set(output = function(x, options) {
    # this hook is used only when the linewidth option is not NULL
    if (!is.null(n <- options$linewidth)) {
      x <- xfun::split_lines(x)
      # any lines with more character than n should be wrapped
      if (any(nchar(x) > n)) x = strwrap(x, width = n)
      x <- paste(x, collapse = '\n')
    }
    hook_output(x, options)
  })
}

Try the rfriend package in your browser

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

rfriend documentation built on Aug. 8, 2025, 7:33 p.m.