Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

从TXT/Markdown导入译文时未处理换行符、空格 #741

Closed
ZzzzzzzSkyward opened this issue Jan 22, 2025 · 1 comment
Closed

从TXT/Markdown导入译文时未处理换行符、空格 #741

ZzzzzzzSkyward opened this issue Jan 22, 2025 · 1 comment

Comments

@ZzzzzzzSkyward
Copy link

ui/config_proj.pyparse_txt_translation函数里,每次找到一个匹配matched时,在截取句子page_content[start:end]后应该调用.strip('\n').strip()以去除首尾空格、尾部换行。

@ZzzzzzzSkyward
Copy link
Author

ZzzzzzzSkyward commented Feb 10, 2025

修改部分(懒得提pr就放这里了):
ui\config_proj.py:57

        if blkid_start is not None:
            blk_list.append(page_content[blkid_end:])
---------------------------------------------
 +       for i in range(len(blk_list)):
 +           blk_list[i] = blk_list[i].strip('\n').strip(' ')
---------------------------------------------
        page_dict['blk_list'] = blk_list

@dmMaze dmMaze closed this as completed in 9963cf2 Feb 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant