expand front/back cover regexes
This commit is contained in:
parent
7726af7dab
commit
669eb37028
|
@ -47,8 +47,8 @@ LANGUAGE_REGEXES = {
|
|||
}
|
||||
|
||||
TEXTLESS_REGEX = re.compile('(台詞|セリフ|せりふ|テキスト|文字)((な|無)し|抜き)|notext|textless', re.I)
|
||||
FRONT_COVER_REGEX = re.compile('(^|[^裏])表紙|cover|hyoushi', re.I)
|
||||
BACK_COVER_REGEX = re.compile('裏表紙', re.I)
|
||||
FRONT_COVER_REGEX = re.compile('(?<!裏)表紙(?!裏)|(?<!back[-_ ])(?<!back)cover|(?<!ura[-_ ])(?<!ura)hyoush?i(?![-_ ]?ura)', re.I)
|
||||
BACK_COVER_REGEX = re.compile('裏表紙|hyoush?i[-_ ]?ura|ura[-_ ]?hyoush?i', re.I)
|
||||
BONUS_REGEX = re.compile('設定|キャラ|特典|ポスター', re.I)
|
||||
EPILOGUE_REGEX = re.compile('after|後日談|おまけ', re.I)
|
||||
SPLITS = [
|
||||
|
|
Loading…
Reference in a new issue