Add Org mode support for textlint.
What is textlint plugin? Please see https://github.com/textlint/textlint/blob/master/docs/plugin.md
$ docker run -v "$(pwd)":/work \
-w /work \
--rm -it ghcr.io/kijimad/textlint-plugin-org \
textlint \
--plugin org \
--rule textlint-rule-preset-ja-technical-writing \
*.org
$ npm install textlint-plugin-org
Via .textlintrc
(Recommended)
{
"plugins": [
"org"
]
}
$ textlint test.org
Via CLI
$ textlint --plugin org test.org
$ npm run test
$ npm run lint
$ npm run build
$ npm version patch
$ npm login
$ npm publish