mirror of https://gitlab.com/bashrc2/epicyon
Unescape
parent
6e8ad06f21
commit
25971816a0
4
git.py
4
git.py
|
@ -7,7 +7,7 @@ __email__ = "bob@freedombone.net"
|
|||
__status__ = "Production"
|
||||
|
||||
import os
|
||||
import urllib.parse
|
||||
import html
|
||||
|
||||
|
||||
def gitFormatContent(content: str) -> str:
|
||||
|
@ -16,7 +16,7 @@ def gitFormatContent(content: str) -> str:
|
|||
"""
|
||||
contentStr = content.replace('<br>', '\n').replace('<br />', '\n')
|
||||
contentStr = contentStr.replace('<p>', '').replace('</p>', '\n')
|
||||
contentStr = urllib.parse.unquote(contentStr)
|
||||
contentStr = html.unescape(contentStr)
|
||||
if 'From ' in contentStr:
|
||||
contentStr = 'From ' + contentStr.split('From ', 1)[1]
|
||||
return contentStr
|
||||
|
|
Loading…
Reference in New Issue