Skip to content

Commit 783a9e4

Browse files
author
Roberto Alsina
committedMar 8, 2018
Fix #211
1 parent 8fba788 commit 783a9e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎v7/emoji/emoji.plugin

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ MinVersion = 7.4.0
99

1010
[Documentation]
1111
Author = Roberto Alsina
12-
Version = 0.3
12+
Version = 0.4
1313
Website = http://plugins.getnikola.com/#emoji
1414
Description = Emoji role for restructured text

‎v7/emoji/emoji.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def emoji_role(name, rawtext, text, lineno, inliner, options={}, content=[]):
4545
text = text.lower()
4646
LOGGER.warn('The role :emoji:`{0}` is deprecated. Use |{0}| instead'.format(text))
4747
node = nodes.image(
48-
uri='http://www.tortue.me/emoji/{0}.png'.format(text),
48+
uri='https://cdnjs.cloudflare.com/ajax/libs/emojify.js/1.1.0/images/basic/{0}.png'.format(text),
4949
alt=text,
5050
classes=['emoji'],
5151
)

0 commit comments

Comments
 (0)
Please sign in to comment.