Skip to content

Commit

Permalink
Fix #211
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto Alsina committed Mar 8, 2018
1 parent 8fba788 commit 783a9e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v7/emoji/emoji.plugin
Expand Up @@ -9,6 +9,6 @@ MinVersion = 7.4.0

[Documentation]
Author = Roberto Alsina
Version = 0.3
Version = 0.4
Website = http://plugins.getnikola.com/#emoji
Description = Emoji role for restructured text
2 changes: 1 addition & 1 deletion v7/emoji/emoji.py
Expand Up @@ -45,7 +45,7 @@ def emoji_role(name, rawtext, text, lineno, inliner, options={}, content=[]):
text = text.lower()
LOGGER.warn('The role :emoji:`{0}` is deprecated. Use |{0}| instead'.format(text))
node = nodes.image(
uri='http://www.tortue.me/emoji/{0}.png'.format(text),
uri='https://cdnjs.cloudflare.com/ajax/libs/emojify.js/1.1.0/images/basic/{0}.png'.format(text),
alt=text,
classes=['emoji'],
)
Expand Down

0 comments on commit 783a9e4

Please sign in to comment.