| emoji_glue {emoji} | R Documentation |
Glue Interpolation for Emojis
Description
Combine the power of glue::glue and emoji().
Usage
emoji_glue(..., .envir = parent.frame())
Arguments
... |
[ |
.envir |
[ |
Details
emoji_glue() behaves in much the same way a lot of messaging apps work.
Anything inside a pair of : will be interpolated into an emoji.
You can think of emoji_glue() as being a shorthand for
glue("I love {emoji('taco')}s").
Block ending with * will be collapsed.
Value
a glue::glue() string.
Examples
emoji_glue("I love :taco:s")
emoji_glue("one :heart:")
emoji_glue("many :heart*:")