5 Star 29 Fork 9

Gitee 极速下载/HBuilderX

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/dcloudio/hbuilderx-extension-docs
克隆/下载
convert.py 517 Bytes
一键复制 编辑 原始数据 按行查看 历史
wdl 提交于 2021-09-23 10:45 . 新增 简体转繁体python脚本
#!/usr/bin/env python
#-*- coding:utf-8 -*-
"""
简体转繁体
"""
import os
import sys
import json
from opencc import OpenCC
source_file = "/Users/hx/DCloud/hbuilderx-extension-docs/zh-hant/Tutorial/Other/themes_param.md"
# s2t 简体 -> 繁体
# s2tw 简体 -> 台湾繁体
# s2hk 简体 -> 香港繁体
cc = OpenCC('s2t')
# cc.convert(to_convert)
with open(source_file, "r") as f:
source_data = f.read()
last_result = cc.convert(source_data)
with open(source_file, "w") as f:
f.write(last_result)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mirrors/HBuilderX.git
[email protected]:mirrors/HBuilderX.git
mirrors
HBuilderX
HBuilderX
master

搜索帮助