mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
35 lines
712 B
Markdown
35 lines
712 B
Markdown
# Table Column Style - Trailing Spaces
|
|
|
|
## Aligned
|
|
|
|
| Heading | Heading | Heading |
|
|
| ------- | --------- | ------- |
|
|
| Text | Text text | Text |
|
|
| Text | Text text | Text |
|
|
| Text | Text text | Text |
|
|
| Text | Text text | Text |
|
|
|
|
## Compact
|
|
|
|
| Heading | Heading | Heading |
|
|
| --- | --- | --- |
|
|
| Text | Text text | Text |
|
|
| Text | Text text | Text |
|
|
| Text | Text text | Text |
|
|
| Text | Text text | Text |
|
|
|
|
## Tight
|
|
|
|
|Heading|Heading|Heading|
|
|
|---|---|---|
|
|
|Text|Text text|Text|
|
|
|Text|Text text|Text|
|
|
|Text|Text text|Text|
|
|
|Text|Text text|Text|
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"table-column-style": {
|
|
"style": "any"
|
|
},
|
|
"no-trailing-spaces": false
|
|
} -->
|