mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
31 lines
523 B
Markdown
31 lines
523 B
Markdown
# Table Pipe Style Explicit Both
|
|
|
|
## Style: both
|
|
|
|
| Table | Heading |
|
|
| ----- | ------- |
|
|
| Cell | Cell |
|
|
|
|
## Style: none {MD055:+2} {MD055:+3} {MD055:+4}
|
|
|
|
Table | Heading
|
|
----- | -------
|
|
Cell | Cell
|
|
|
|
## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}
|
|
|
|
| Table | Heading
|
|
| ----- | -------
|
|
| Cell | Cell
|
|
|
|
## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}
|
|
|
|
Table | Heading |
|
|
----- | ------- |
|
|
Cell | Cell |
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"table-pipe-style": {
|
|
"style": "leading_and_trailing"
|
|
}
|
|
} -->
|