Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (15 sloc) 355 Bytes
#' Convert to blockquote
#'
#' Turn the selected text into a blockquote.
#'
#' @return a markdown blockquote
#' @export
#' @importFrom rstudioapi getSourceEditorContext insertText
#' @examples
#' \dontrun{
#' remedy_example(
#' c( "to_blockquote"),
#' blockquoter
#' )
#' }
blockquoter <- function() add_multiline_prefix('> ', as_is = TRUE)
You can’t perform that action at this time.