Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
3fa6f3ae
Commit
3fa6f3ae
authored
Jan 31, 2018
by
lain
Browse files
Merge branch 'fix/split-custom-emoji' into 'develop'
Split emoji to default and custom. See merge request
!56
parents
5e37aded
ab8b9aba
Pipeline
#568
passed with stage
in 2 minutes and 15 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
config/emoji.txt
→
config/emoji
_default
.txt
View file @
3fa6f3ae
File moved
lib/pleroma/formatter.ex
View file @
3fa6f3ae
...
...
@@ -104,12 +104,18 @@ def html_escape(text) do
{
finmoji
,
"/finmoji/128px/
#{
finmoji
}
-128.png"
}
end
)
@emoji_from_file
(
with
{
:ok
,
file
}
<-
File
.
read
(
"config/emoji.txt"
)
do
file
|>
String
.
trim
|>
String
.
split
(
"
\n
"
)
@emoji_from_file
(
with
{
:ok
,
default
}
<-
File
.
read
(
"config/emoji.txt"
)
do
custom
=
with
{
:ok
,
custom
}
<-
File
.
read
(
"config/custom_emoji.txt"
)
do
custom
else
_e
->
""
end
(
default
<>
"
\n
"
<>
custom
)
|>
String
.
trim
()
|>
String
.
split
(
~r/\n+/
)
|>
Enum
.
map
(
fn
(
line
)
->
[
name
,
file
]
=
String
.
split
(
line
,
", "
)
[
name
,
file
]
=
String
.
split
(
line
,
~r/,\s*/
)
{
name
,
file
}
end
)
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment