This commit is contained in:
David Anson 2025-11-22 19:40:26 -08:00
parent 7668b0a263
commit f44a15e430
17 changed files with 333 additions and 27 deletions

View file

@ -340,6 +340,7 @@
// MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md060.md
"MD060": {
// Table column style
"style": "any"
"style": "any",
// RegExp for matching wide character(s)
}
}

View file

@ -304,3 +304,4 @@ MD059:
MD060:
# Table column style
style: "any"
# RegExp for matching wide character(s)

View file

@ -645,6 +645,12 @@ for (const rule of rules) {
],
"default": "any"
};
// @ts-ignore
subscheme.properties.wide_character = {
"description": "RegExp for matching wide character(s)",
"type": "string",
"default": undefined
};
break;
default:
break;

View file

@ -4701,6 +4701,10 @@
"tight"
],
"default": "any"
},
"wide_character": {
"description": "RegExp for matching wide character(s)",
"type": "string"
}
}
}
@ -4747,6 +4751,10 @@
"tight"
],
"default": "any"
},
"wide_character": {
"description": "RegExp for matching wide character(s)",
"type": "string"
}
}
}

View file

@ -4701,6 +4701,10 @@
"tight"
],
"default": "any"
},
"wide_character": {
"description": "RegExp for matching wide character(s)",
"type": "string"
}
}
}
@ -4747,6 +4751,10 @@
"tight"
],
"default": "any"
},
"wide_character": {
"description": "RegExp for matching wide character(s)",
"type": "string"
}
}
}