docs: disable MD060 table alignment (incompatible with CJK width)

This commit is contained in:
Christian Visintin
2026-06-08 10:16:00 +02:00
parent 88900a80b8
commit 14e6872432
+5 -1
View File
@@ -3,7 +3,11 @@
"config": { "config": {
// Line length is impractical for keyboard/style tables and long prose; // Line length is impractical for keyboard/style tables and long prose;
// mdBook reflows in the browser, so we don't enforce a hard wrap. // mdBook reflows in the browser, so we don't enforce a hard wrap.
"MD013": false "MD013": false,
// Table column alignment can't be satisfied for CJK (zh-CN) content:
// markdownlint counts code points while CJK glyphs are double-width, so a
// visually aligned table never matches. Rendering is unaffected.
"MD060": false
}, },
"globs": ["docs/**/*.md"], "globs": ["docs/**/*.md"],
"ignores": [ "ignores": [