Nothing
## ----include = FALSE----------------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
## ----install-from-github, eval = FALSE----------------------------------------
#
# # Install from CRAN
#
# ## Using the base R
# # install.packages("Rmoji")
#
# ## using the {pacman} package
# # pacman::p_load(Rmoji)
#
# # Install from GitHub
#
# # install.packages("devtools")
#
# devtools::install_github("3p1d3m/Rmoji")
#
# # load the package
#
# library(Rmoji)
#
## ----r emoji-preview, echo = TRUE---------------------------------------------
data("emoji_dict", package = "Rmoji")
# Print first 10 emoji names
emoji_names <- head(names(emoji_dict), 10)
## ----emoji-insert-examples, eval=FALSE----------------------------------------
#
# # Insert the smile emoji
# smile <- insert_emoji("smile")
#
# # returns smile = 😄
#
# # Insert the start emoji
# start <- insert_emoji("star")
#
# # returns star = ⭐
#
## ----get-bug-emoji, eval = FALSE----------------------------------------------
#
# # Get the bug
#
# bug_emoji <- git_emoji("bug")
#
# # Returns:🐛
#
# bug_emoji
#
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.