hpprc commited on
Commit
5d93d17
·
1 Parent(s): 0c4e08d
Files changed (1) hide show
  1. en-ja-align.py +5 -0
en-ja-align.py CHANGED
@@ -71,6 +71,11 @@ def parse_html_table(path: Path):
71
 
72
  cur_left_quote += len(list(re.findall(r"``", text_en)))
73
  cur_right_quote += len(list(re.findall(r"''", text_en)))
 
 
 
 
 
74
 
75
  cur_left_parens_ja += text_ja.count("「")
76
  cur_right_parens_ja += text_ja.count("」")
 
71
 
72
  cur_left_quote += len(list(re.findall(r"``", text_en)))
73
  cur_right_quote += len(list(re.findall(r"''", text_en)))
74
+ # cur_right_quote += max(
75
+ # len(list(re.findall(r"''", text_en)))
76
+ # - len(list(re.findall(r"'''", text_en))),
77
+ # 0,
78
+ # )
79
 
80
  cur_left_parens_ja += text_ja.count("「")
81
  cur_right_parens_ja += text_ja.count("」")