#' Deprecated functions
#'
#' @name deprecated
#' @seealso [Deprecated][base::Deprecated].
#' @return `.Deprecated`.
#'
#' @examples
#' a <- function(...) {
#' .Deprecated("b")
#' b(...)
#' }
#'
#' b <- function(x) {
#' x + 1L
#' }
#'
#' withCallingHandlers(
#' expr = a(1L),
#' warning = function(w) {
#' print(w)
#' invokeRestart("muffleWarning")
#' }
#' )
NULL
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.