emo icon indicating copy to clipboard operation
emo copied to clipboard

Easily insert emoji into R and RMarkdown

Results 44 emo issues
Sort by recently updated
recently updated
newest added

Like what https://github.com/twitter/twemoji does. Probably useful in the markdown context. ``` twemoji.parse('I \u2764\uFE0F emoji!'); // will produce /* I emoji! */ ``` But preferably using apple emojis instead. - can...

as an rstudio add in (moved from https://github.com/ThinkRstat/emojitsu/issues/3)

Prior to recent changes this package imported only tibble, which made it small package that could be easily included in other R packages as a nice simple interface to emojis....

I think it'd be lovely if we could incorporate [these emoji codes](https://www.webpagefx.com/tools/emoji-cheat-sheet/) - used by Slack, GitHub, etc 🎉 👯 @romainfrancois: Here is their [GitHub](https://github.com/WebpageFX/emoji-cheat-sheet.com) - I haven't poked around...

``` medal(1) medal(2) medal(3) medal(gold) medal(silver) medal(bronze) ```

There is data http://unicode.org/emoji/charts/emoji-versions-sources.html about when emojis were introduced. But this does not include sequences, so would have to come up with a proxy for those

or maybe `emo::ji_glue` to substitute `:emoji:` with the the right emoji. I guess this would end up being used for #11

Not sure how to call it yet, but something like ``` knitr::knit_hooks$set(document = function(x) { # gsub(..., x) }) ``` The function would replace e.g. `:grinning_face:` with 😀 (Moved from...

I have the following Rmarkdown code, which uses this great **[emo(ji)][1]** package. --- title: "My First Shiny" runtime: shiny output: flexdashboard::flex_dashboard: orientation: rows vertical_layout: scroll --- ```{r setup, include=FALSE} ```...