0.1.0 • Published 6 months ago

textlint-rule-table-align v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

textlint-rule-table-align

textlint rule that check table align.

By default, no alignment at table.

[OK]

| foo | bar |
| --- | --- |
| 111 | 222 |

[NG]

| foo | bar |
| :-- | --: |
| 111 | 222 |

Install

npm install textlint-rule-table-align

Usage

{
  "rules": {
    "table-align": true
  }
}

Options

{
  // Prefer alignment. (default is no alignment)
  // You can configure `'left'`, `'right'`, `'center'` or `null`.
  "align": null
}

License

MIT License

0.1.0

6 months ago