mirror of https://gitlab.com/bashrc2/epicyon
Comments
parent
8aafc35c10
commit
8d78bb6f6b
|
@ -248,8 +248,12 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \
|
|||
continue
|
||||
if len(wordStr)>2 and wordStr.startswith(':') and wordStr.endswith(':') and not emojiDict:
|
||||
print('Loading emoji lookup')
|
||||
|
||||
# emoji.json is generated so that it can be customized and the changes
|
||||
# will be retained even if default_emoji.json is subsequently updated
|
||||
if not os.path.isfile(baseDir+'/emoji/emoji.json'):
|
||||
copyfile(baseDir+'/emoji/default_emoji.json',baseDir+'/emoji/emoji.json')
|
||||
|
||||
with open(baseDir+'/emoji/emoji.json', 'r') as fp:
|
||||
emojiDict=commentjson.load(fp)
|
||||
|
||||
|
|
|
@ -55,6 +55,8 @@ def htmlSearchEmoji(translate: {},baseDir: str,searchStr: str) -> str:
|
|||
"""Search results for emoji
|
||||
"""
|
||||
|
||||
# emoji.json is generated so that it can be customized and the changes
|
||||
# will be retained even if default_emoji.json is subsequently updated
|
||||
if not os.path.isfile(baseDir+'/emoji/emoji.json'):
|
||||
copyfile(baseDir+'/emoji/default_emoji.json',baseDir+'/emoji/emoji.json')
|
||||
|
||||
|
@ -2348,6 +2350,8 @@ def htmlSearchEmojiTextEntry(translate: {}, \
|
|||
baseDir: str,path: str) -> str:
|
||||
"""Search for an emoji by name
|
||||
"""
|
||||
# emoji.json is generated so that it can be customized and the changes
|
||||
# will be retained even if default_emoji.json is subsequently updated
|
||||
if not os.path.isfile(baseDir+'/emoji/emoji.json'):
|
||||
copyfile(baseDir+'/emoji/default_emoji.json',baseDir+'/emoji/emoji.json')
|
||||
|
||||
|
|
Loading…
Reference in New Issue