1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

Chinese pages: remove space in More info link (#6305)

This commit is contained in:
marchersimon 2021-08-31 09:13:49 +02:00 committed by GitHub
parent 2a71b87788
commit c70c0c2688
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
174 changed files with 177 additions and 174 deletions

View file

@ -1,7 +1,7 @@
# cmd
> Android 服务管理器。
> 更多信息见: <https://cs.android.com/android/platform/superproject/+/master:frameworks/native/cmds/cmd/>.
> 更多信息<https://cs.android.com/android/platform/superproject/+/master:frameworks/native/cmds/cmd/>.
- 列出所有正在运行的服务:

3
scripts/set-more-info-link.py Normal file → Executable file
View file

@ -78,6 +78,9 @@ def set_link(file, link):
locale = 'en'
# build new line
if locale == "zh" or locale == "zh_TW":
new_line = f'> {labels[locale]}<{link}>.\n'
else:
new_line = f'> {labels[locale]} <{link}>.\n'
if lines[desc_end] == new_line: