@@ -258,10 +258,11 @@ var conventions = map[string]Convention{
258258 // (MDS027). The peers' `link-fragments`/MD051 rules resolve only
259259 // same-file anchors, while mdsmith's MDS027 also walks the workspace
260260 // for cross-file links, so those mappings are partial. Dropping
261- // MDS027 keeps gomarklint-parity and mado-parity fully
262- // parse-skip-safe; a future same-file-anchors rule could restore a
263- // like-for-like anchor check (plan
264- // 2606210840_same-file-anchor-resolution-rule.md).
261+ // MDS027 keeps parity sets fully parse-skip-safe.
262+ // MDS070 (same-file-anchor) is the like-for-like same-file anchor
263+ // check: gomarklint, markdownlint, and rumdl run it by default so
264+ // their parity sets inherit the mdsmith default (enabled); mado has
265+ // no peer rule so mado-parity disables it.
265266 "gomarklint-parity" : {
266267 Name : "gomarklint-parity" ,
267268 Flavor : FlavorGFM ,
@@ -311,7 +312,7 @@ var conventions = map[string]Convention{
311312 "no-space-in-link-text" : {Enabled : true },
312313 "ordered-list-numbering" : {Enabled : true },
313314 "single-h1" : {Enabled : true },
314- // Disable the 23 mdsmith defaults mado does not run by default.
315+ // Disable the 24 mdsmith defaults mado does not run by default.
315316 "blank-line-around-lists" : {Enabled : false },
316317 "build" : {Enabled : false },
317318 "catalog" : {Enabled : false },
@@ -329,6 +330,7 @@ var conventions = map[string]Convention{
329330 "paragraph-readability" : {Enabled : false },
330331 "recipe-safety" : {Enabled : false },
331332 "required-structure" : {Enabled : false },
333+ "same-file-anchor" : {Enabled : false },
332334 "table-format" : {Enabled : false },
333335 "table-readability" : {Enabled : false },
334336 "toc" : {Enabled : false },
0 commit comments