公用文校正のためのtextlintルール
- 例
- 「わたし」→「私」
- 「ご案内」→「御案内」
詳細は、辞書の定義を参照
node.js の事前インストール。その後、
npm install --save-dev textlint
npm install --save-dev textlint-rule-prh
npm install @textlint-ja/textlint-rule-morpheme-match
npm install --save-dev yabuuchi-hiroaki/textlint-rule-ja-official-documents
.textlintrc
に以下を書きこみ
{
"rules": {
"@textlint-ja/morpheme-match": {
"dictionaryPathList": ["node_modules/textlint-rule-ja-official-documents/src/dictionary.js"]
},
"prh": {
"rulePaths": [
"node_modules/textlint-rule-ja-official-documents/dict/prh.yml"
]
}
}
}
npx textlint [Markdownファイルへのpath]