AsciiDoc/Asciidoctor loose support for textlint.
- Support only "Paragraph" and "Str"
- Work on Node.js. This limitation come from vscode-textmate.
- Oniguruma is native module.
If you interesting in the plugin, please pull request to improve!
npm install textlint-plugin-asciidoc-loose
{
"plugins": [
"asciidoc-loose"
]
}
This plugin recognize these file extension as asciidoc file.
- ".asciidoc",
- ".adoc",
- ".asc"
http://asciidoctor.org/docs/asciidoc-recommended-practices/
Travis CI fail to build.
You can fix this issue by adding following setting to .travis.yml
os:
- linux
sudo: false
language: node_js
node_js:
- "stable"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- export CXX=g++-4.8
- npm install
npm test
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT