Improve plaintext.py
This commit is contained in:
parent
8e5ed2a161
commit
958328427a
2 changed files with 2 additions and 3 deletions
|
@ -163,7 +163,6 @@ func LoadConfig(root *string) (*AercConfig, error) {
|
||||||
Command: cmd,
|
Command: cmd,
|
||||||
Filter: match,
|
Filter: match,
|
||||||
}
|
}
|
||||||
fmt.Println(match)
|
|
||||||
if strings.Contains(match, ",~") {
|
if strings.Contains(match, ",~") {
|
||||||
filter.FilterType = FILTER_HEADER
|
filter.FilterType = FILTER_HEADER
|
||||||
header := filter.Filter[:strings.Index(filter.Filter, ",")]
|
header := filter.Filter[:strings.Index(filter.Filter, ",")]
|
||||||
|
|
|
@ -8,8 +8,8 @@ import re
|
||||||
ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]')
|
ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]')
|
||||||
# TODO: I guess this might vary from MUA to MUA. I've definitely seen localized
|
# TODO: I guess this might vary from MUA to MUA. I've definitely seen localized
|
||||||
# versions in the wild
|
# versions in the wild
|
||||||
quote_prefix_re = re.compile(r"On [0-9: -]+( (AM|PM))?, .* wrote:")
|
quote_prefix_re = re.compile(r"On .*, .* wrote:")
|
||||||
quote_re = re.compile(r">+ ")
|
quote_re = re.compile(r">+")
|
||||||
|
|
||||||
mail = sys.stdin.read().replace("\r\n", "\n")
|
mail = sys.stdin.read().replace("\r\n", "\n")
|
||||||
mail = ansi_escape.sub('', mail)
|
mail = ansi_escape.sub('', mail)
|
||||||
|
|
Loading…
Reference in a new issue