mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 01:05:55 +03:00
[GH-ISSUE #1917] MD060: Aligned update breaking existing tables #778
Labels
No labels
bug
enhancement
enhancement
enhancement
fixed in next
fixed in next
fixed in next
new rule
new rule
new rule
pull-request
question
refactoring
refactoring
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/markdownlint#778
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @texonidas on GitHub (Jan 19, 2026).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/1917
In all of our existing tables, we have used the following syntax:
Noting the difference in spacing between row separator lines (no space), and value lines (single space). After we have returned from the holiday break this is now no longer valid according to markdown lint. Is there a simple way for us to continue using the existing behaviour that allows this as a valid table?
@DavidAnson commented on GitHub (Jan 19, 2026):
You could disable the rule or modify the table to match one of the three supported styles. Your example seems closest to the "compact" style and would only require edits to the separator line to comply. This could probably be done with a regular expression search and replace if desired.