#' Convert USD to HUF
#' @param x number
#' @return number
#' @export
#' @importFrom logger log_info
convert_usd_to_huf <- function(x){
y <- get_usdhuf()
log_info('{x} USD currently equels this amount of HUF:')
return(x*y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.