#' Convert USD to HUF
#' @param x amount in USD
#' @return string
#' @export
#' @importFrom scales dollar
#' @examples
#' forint(100000)
#' forint(10.3241245125125)
#' forint(42)
forint <- function(x) {
dollar(x, prefix = '', suffix = ' HUF')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.