R implementation of typed.js for Rmarkdown.
# install.packages("remotes")
remotes::install_github("JohnCoene/typedjs")
library(typedjs)
typed("Hello")
typed(
"Emphasis word <span style ='color: red;'>with html</span>.",
contentType = "html"
)
typed(
list(
shiny::h3("First sentence."),
shiny::h4("Second sentence")
),
typeSpeed = 2
)