Add emoji support
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 24 Feb 2016 23:52:11 +0000 (00:52 +0100)
committerCameron Moore <moorereason@gmail.com>
Fri, 11 Mar 2016 21:51:37 +0000 (15:51 -0600)
commitcafb784799e2e09df7345ca1d7cfcfae4d1b7aa2
tree1201fcb64fb2dd74a2f846cd2d008bba5a48a298
parent5926c6c8d5ae950a0ea2ef6492b1e03095b60574
Add emoji support

This uses the Emoji map from https://github.com/kyokomi/emoji -- but with a custom replacement implementation.

The built-in are fine for most use cases, but in Hugo we do care about pure speed.

The benchmarks below are skewed in Hugo's direction as the source and result is a byte slice,
Kyokomi's implementation works best with strings.

Curious: The easy-to-use `strings.Replacer` is also plenty fast.

```
BenchmarkEmojiKyokomiFprint-4      20000      86038 ns/op    33960 B/op      117 allocs/op
BenchmarkEmojiKyokomiSprint-4      20000      83252 ns/op    38232 B/op      122 allocs/op
BenchmarkEmojiStringsReplacer-4   100000      21092 ns/op    17248 B/op       25 allocs/op
BenchmarkHugoEmoji-4              500000       5728 ns/op      624 B/op       13 allocs/op
```

Fixes #1891
commands/hugo.go
docs/content/overview/configuration.md
docs/content/templates/functions.md
helpers/emoji.go [new file with mode: 0644]
helpers/emoji_test.go [new file with mode: 0644]
hugolib/handler_page.go
tpl/template_funcs.go