소스 검색

imporved hyphenation to build.py

Bachir Soussi Chiadmi 7 년 전
부모
커밋
567f6e3a30
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      bin/build.py

+ 5 - 3
bin/build.py

@@ -243,10 +243,12 @@ def hyphenate(node):
          pass
 
    # add none breaking spaces
-   nbspzr = ['"', '»', '«', '\.', '\!', '\?', ':', ';']
-   for char in nbspzr:
-      # print(char)
+   nbspzr_before = ['"', '»', '\!', '\?', ':', ';']
+   for char in nbspzr_before:
       nodestr = re.sub(r'('+char+')\s(\w)', r'\1 \2', nodestr)
+
+   nbspzr_after = ['"', '«']
+   for char in nbspzr_after:
       nodestr = re.sub(r'(\w)\s('+char+')', r'\1 \2', nodestr)
 
    # print(nodestr)