Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/JohnCoene/typedjs

⌨️ typed.js R htmlwidgets
https://github.com/JohnCoene/typedjs

htmlwidgets r rstats

Last synced: 3 months ago
JSON representation

⌨️ typed.js R htmlwidgets

Awesome Lists containing this project

README

        

# typed

R implementation of [typed.js](https://github.com/mattboldt/typed.js/) for Rmarkdown.

## Installation

```r
# install.packages("remotes")
remotes::install_github("JohnCoene/typedjs")
```

## Example

```r
library(typedjs)

typed("Hello")
typed(
"Emphasis word with html.",
contentType = "html"
)
typed(
list(
shiny::h3("First sentence."),
shiny::h4("Second sentence")
),
typeSpeed = 2
)
```