jekyll / jemoji

GitHub-flavored emoji plugin for Jekyll
http://rubygems.org/gems/jemoji
MIT License
556 stars 61 forks source link

Emojis are not rendered inline #92

Closed mu88 closed 5 years ago

mu88 commented 5 years ago

I'm wondering why the emojis within my blog post are not rendered inline, but instead are placed on a separate line.

ashmaroli commented 5 years ago

This plugin just replaces :smiley: with the markup to render :smiley: The issue you're facing is because of faulty CSS:

img {
  display: block;
  max-width: 100%;
  margin: 0 0 1rem;
  border-radius: 5px;
}
mu88 commented 5 years ago

Thank you!