Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5b2a35d

Browse files
author
Roberto Alsina
committedMay 9, 2018
come back emoji
1 parent 84f237e commit 5b2a35d

File tree

11 files changed

+6556
-0
lines changed

11 files changed

+6556
-0
lines changed
 

‎nikola/plugins/shortcode/emoji.plugin

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[Core]
2+
name = emoji
3+
module = emoji
4+
5+
[Nikola]
6+
PluginCategory = Shortcode
7+
8+
[Documentation]
9+
author = Roberto Alsina
10+
version = 0.1
11+
website = https://getnikola.com/
12+
description = emoji shortcode
13+
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# -*- coding: utf-8 -*-
2+
# This file is public domain according to its author, Roberto Alsina
3+
4+
"""Emoji directive for reStructuredText."""
5+
6+
import glob
7+
import json
8+
import os
9+
10+
from nikola.plugin_categories import ShortcodePlugin
11+
from nikola import utils
12+
13+
TABLE = {}
14+
15+
LOGGER = utils.get_logger('scan_posts')
16+
17+
18+
def _populate():
19+
for fname in glob.glob(os.path.join(os.path.dirname(__file__), 'data', '*.json')):
20+
with open(fname) as inf:
21+
data = json.load(inf)
22+
data = data[list(data.keys())[0]]
23+
data = data[list(data.keys())[0]]
24+
for item in data:
25+
if item['key'] in TABLE:
26+
LOGGER.warning('Repeated emoji {}'.format(item['key']))
27+
else:
28+
TABLE[item['key']] = item['value']
29+
30+
31+
class Plugin(ShortcodePlugin):
32+
"""Plugin for gist directive."""
33+
34+
name = "emoji"
35+
36+
def handler(self, name, filename=None, site=None, data=None, lang=None, post=None):
37+
"""Create HTML for emoji."""
38+
if not TABLE:
39+
_populate()
40+
try:
41+
output = u'''<span class="emoji">{}</span>'''.format(TABLE[name])
42+
except KeyError:
43+
LOGGER.warning('Unknown emoji {}'.format(name))
44+
output = u'''<span class="emoji error">{}</span>'''.format(name)
45+
46+
return output, []

0 commit comments

Comments
 (0)
Please sign in to comment.