Gulp Plugin: 基于 OpenCC 的简繁体转换

625 阅读1分钟
原文链接: github.com

gulp-opencc

gulp GitHub license

npm Build Status npm

A Gulp plugin for convert chinese based on OpenCC.

Usage

This plugin is mainly used for converting Chinese in Gulp tasks defined in the file, gulpfile.js. As it is based on OpenCC, you can use it with passing options, in which you can specify the type of converting:

  • s2t: Simplified Chinese to Traditional Chinese 簡體到繁體
  • t2s: Traditional Chinese to Simplified Chinese 繁體到簡體
  • s2tw: Simplified Chinese to Traditional Chinese (Taiwan Standard) 簡體到臺灣正體
  • tw2s: Traditional Chinese (Taiwan Standard) to Simplified Chinese 臺灣正體到簡體
  • s2hk: Simplified Chinese to Traditional Chinese (Hong Kong Standard) 簡體到香港繁體(香港小學學習字詞表標準)
  • hk2s: Traditional Chinese (Hong Kong Standard) to Simplified Chinese 香港繁體(香港小學學習字詞表標準)到簡體
  • s2twp: Simplified Chinese to Traditional Chinese (Taiwan Standard) with Taiwanese idiom 簡體到繁體(臺灣正體標準)並轉換爲臺灣常用詞彙
  • tw2sp: Traditional Chinese (Taiwan Standard) to Simplified Chinese with Mainland Chinese idiom 繁體(臺灣正體標準)到簡體並轉換爲中國大陸常用詞彙
  • t2tw: Traditional Chinese (OpenCC Standard) to Taiwan Standard 繁體(OpenCC 標準)到臺灣正體
  • t2hk: Traditional Chinese (OpenCC Standard) to Hong Kong Standard 繁體(OpenCC 標準)到香港繁體(香港小學學習字詞表標準)
/** gulpfile.js */
const opencc = require('gulp-opencc');

gulp.task('convert-chinese', () => {
    gulp.src('zh.json')
        .pipe(opencc.default({
            type: 's2tw'
        }))
        .pipe(rename('zh_TW.json'))
        .pipe(gulp.dest('build/'));
});

Release History

  • ==================== 1.0.0 Initial release ====================
    • 1.0.1 doc: update the document of this project

:fuelpump: How to contribute

Have an idea? Found a bug? See how to contribute.

:scroll: License

MIT © aleen42