plugin(emojize): updated to latest version
This commit is contained in:
parent
e7bd560edb
commit
f647625361
1 changed files with 3 additions and 3 deletions
|
@ -5,11 +5,11 @@ from lektor.pluginsystem import Plugin
|
|||
|
||||
|
||||
class EmojifyPlugin(Plugin):
|
||||
name = u'lektor-emojify'
|
||||
description = u'Add emoji to your pages'
|
||||
name = "lektor-emojify"
|
||||
description = "Add emoji to your pages"
|
||||
|
||||
def emojize(self, text):
|
||||
return emoji.emojize(text, use_aliases=True)
|
||||
return emoji.emojize(text, language="alias")
|
||||
|
||||
def on_markdown_config(self, config, **extra):
|
||||
class EmojizeMixin(object):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue