Skip to content

Commit

Permalink
Fix error in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sda030 committed Nov 24, 2024
1 parent bf272ac commit 3967952
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions R/make_link.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,15 @@ make_link <- function(data, ...) {
UseMethod("make_link", data)
}

#' @title make_link
#' @description make_link

#' Save data to a file and return a Markdown link
#'
#' The file is automatically named by a hash of the object, removing the need
#' to come up with unique file names inside a Quarto report. This has the
#' added benefit of reducing storage needs if the objects needing linking to
#' are identical, and all are stored in the same folder. It also allows the user
#' to download multiple files without worrying about accidentally overwriting them.
#'
#'
#' @inheritParams make_link
#' @param separator_list_items *Separator string between multiple list items*
Expand All @@ -48,8 +55,14 @@ make_link.list <- function(
}


#' @title make_link
#' @description make_link
#' Save data to a file and return a Markdown link
#'
#' The file is automatically named by a hash of the object, removing the need
#' to come up with unique file names inside a Quarto report. This has the
#' added benefit of reducing storage needs if the objects needing linking to
#' are identical, and all are stored in the same folder. It also allows the user
#' to download multiple files without worrying about accidentally overwriting them.
#'
#'
#' @inheritParams make_link
#'
Expand Down

0 comments on commit 3967952

Please sign in to comment.