Detects surrogate pairs (D800-DBFF and DC00-DFFF) in sentences.
文章の中でUnicodeのサロゲートペアの文字が使われていると検出します。サロゲートペアの文字は一部の電子書籍のリーディングシステムで表示ができないため注意が必要です。
参考:電書ラボEPUB制作仕様 2016.07.28 β0.99
Install with npm:
npm install textlint-rule-no-surrogate-pair
Via .textlintrc
(Recommended)
{
"rules": {
"no-surrogate-pair": true
}
}
Via CLI
textlint --rule no-surrogate-pair README.md
Builds source codes for publish to the lib
folder.
You can write ES2015+ source codes in src/
folder.
npm run build
Run test code in test
folder.
Test textlint rule by textlint-tester.
npm test
MIT ©