1
0
Fork 0
forked from gitea/nas

Fix markdown underline with custom emoji

This commit is contained in:
KMY 2023-03-05 09:05:16 +09:00
parent 7c7d21cbef
commit b049e7c502

View file

@ -199,7 +199,7 @@ class TextFormatter
end
def underline(text)
nil
text.include?(':') ? nil : '<u>' + text + '</u>'
end
private