Pin refusal codes and divergences; fix the text oracle and count by heading level
This commit is contained in:
+7
-3
@@ -12,9 +12,13 @@ One directory per contract kind, each landing with its milestone:
|
||||
pins which error.
|
||||
- `real-payloads/` — `<name>.json`: sanitized live ADF, round-tripped ADF→markdown→ADF. No
|
||||
expected markdown.
|
||||
- `commonmark-spec/` — `spec.json` (the CommonMark 0.31.2 suite, vendored byte-exact) and
|
||||
`exceptions.json` (the examples a known divergence exempts, keyed by `check` and `example` with
|
||||
a `reason`).
|
||||
- `commonmark-spec/` — the CommonMark suite run against `markdownToAdf` by three checks. `spec.json`
|
||||
(0.31.2, vendored byte-exact) is the suite; `refusals.json` pins each refusing example to its
|
||||
error `code`; `exceptions.json` pins each known divergence by `check`, `example`, `kind` and the
|
||||
exact `divergence`, with a `reason`. `kind` is `mark-model` (the permanent count divergence from
|
||||
ADF's mark-per-text-node model), `unspellable` (parses but the flavour has no spelling) or
|
||||
`pending` (a parser gap a later milestone may close). The two lists are derived and labelled,
|
||||
not hand-picked — regenerate them rather than hand-edit when re-pinning.
|
||||
|
||||
JSON is editor-normal (AGENTS.md §2), two-space indent, keys sorted. `spec.json` is the vendored,
|
||||
upstream machine-readable suite (CommonMark 0.31.2, CC-BY-SA-4.0, © John MacFarlane) and is not
|
||||
|
||||
@@ -1,322 +1,436 @@
|
||||
[
|
||||
{
|
||||
"check": "text",
|
||||
"example": 39,
|
||||
"reason": "` ` decodes to a newline kept literal in text; CommonMark reads it a soft break."
|
||||
},
|
||||
{
|
||||
"check": "fixpoint",
|
||||
"divergence": "unspellable-link",
|
||||
"example": 196,
|
||||
"kind": "unspellable",
|
||||
"reason": "The link title holds literal newlines no escape spells."
|
||||
},
|
||||
{
|
||||
"check": "fixpoint",
|
||||
"divergence": "unspellable-link",
|
||||
"example": 202,
|
||||
"kind": "unspellable",
|
||||
"reason": "The link destination holds a backslash the flavour cannot escape."
|
||||
},
|
||||
{
|
||||
"check": "text",
|
||||
"example": 300,
|
||||
"reason": "A heading and the block after it join with no space where CommonMark breaks them."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "ul 2/1",
|
||||
"example": 301,
|
||||
"kind": "pending",
|
||||
"reason": "A list continuing past a marker change renders as two lists, the parser opens one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "ol 2/1",
|
||||
"example": 302,
|
||||
"kind": "pending",
|
||||
"reason": "A list continuing past a marker change renders as two lists, the parser opens one."
|
||||
},
|
||||
{
|
||||
"check": "fixpoint",
|
||||
"divergence": "unspellable-line-start",
|
||||
"example": 330,
|
||||
"kind": "unspellable",
|
||||
"reason": "A paragraph opens with a code span whose backticks read back as a fence."
|
||||
},
|
||||
{
|
||||
"check": "fixpoint",
|
||||
"divergence": "unspellable-line-start",
|
||||
"example": 331,
|
||||
"kind": "unspellable",
|
||||
"reason": "A paragraph opens with a code span whose backticks read back as a fence."
|
||||
},
|
||||
{
|
||||
"check": "fixpoint",
|
||||
"divergence": "unspellable-line-start",
|
||||
"example": 340,
|
||||
"kind": "unspellable",
|
||||
"reason": "A paragraph opens with a code span whose backticks read back as a fence."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 369,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 373,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 389,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 393,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/5",
|
||||
"example": 394,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/3",
|
||||
"example": 395,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 399,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 404,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 406,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 407,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 408,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 409,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 410,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 411,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 413,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 414,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 415,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 3/1",
|
||||
"example": 417,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/5 strong 1/3",
|
||||
"example": 418,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/2",
|
||||
"example": 422,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/3",
|
||||
"example": 424,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 425,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 426,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 427,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/3",
|
||||
"example": 428,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/3",
|
||||
"example": 429,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/2",
|
||||
"example": 430,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/2",
|
||||
"example": 431,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3 strong 2/5",
|
||||
"example": 432,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 1/2",
|
||||
"example": 433,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 461,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 2/1",
|
||||
"example": 463,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 464,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 465,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 3/1",
|
||||
"example": 466,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "strong 2/1",
|
||||
"example": 468,
|
||||
"kind": "mark-model",
|
||||
"reason": "CommonMark nests same-kind elements; the single mark collapses them to one."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 470,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 478,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 479,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/0",
|
||||
"example": 484,
|
||||
"reason": "The empty link text stays literal text; CommonMark renders an empty link."
|
||||
"kind": "pending",
|
||||
"reason": "An empty link text stays literal text; CommonMark renders an empty link."
|
||||
},
|
||||
{
|
||||
"check": "text",
|
||||
"divergence": "\"\" against \"[](./target.md)\"",
|
||||
"example": 484,
|
||||
"kind": "pending",
|
||||
"reason": "An empty link text stays literal text; CommonMark renders an empty link."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/0",
|
||||
"example": 487,
|
||||
"reason": "The empty link text stays literal text; CommonMark renders an empty link."
|
||||
"kind": "pending",
|
||||
"reason": "An empty link text stays literal text; CommonMark renders an empty link."
|
||||
},
|
||||
{
|
||||
"check": "text",
|
||||
"divergence": "\"\" against \"[]()\"",
|
||||
"example": 487,
|
||||
"kind": "pending",
|
||||
"reason": "An empty link text stays literal text; CommonMark renders an empty link."
|
||||
},
|
||||
{
|
||||
"check": "fixpoint",
|
||||
"divergence": "unspellable-link",
|
||||
"example": 502,
|
||||
"kind": "unspellable",
|
||||
"reason": "The link destination holds a backslash the flavour cannot escape."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/5 em 1/4",
|
||||
"example": 516,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/3",
|
||||
"example": 519,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/5 em 1/4",
|
||||
"example": 530,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 533,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/0",
|
||||
"example": 540,
|
||||
"kind": "pending",
|
||||
"reason": "The case-folding shortcut reference is unresolved; CommonMark folds case and links."
|
||||
},
|
||||
{
|
||||
"check": "text",
|
||||
"divergence": "\"ẞ\" against \"[ẞ]\"",
|
||||
"example": 540,
|
||||
"reason": "A case-folding shortcut reference is unresolved text; CommonMark folds case and links."
|
||||
"kind": "pending",
|
||||
"reason": "A case-folding shortcut reference is unresolved; CommonMark folds case and links."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/2",
|
||||
"example": 554,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/2",
|
||||
"example": 558,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "a 1/2",
|
||||
"example": 559,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 638,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
},
|
||||
{
|
||||
"check": "count",
|
||||
"divergence": "em 1/2",
|
||||
"example": 639,
|
||||
"kind": "mark-model",
|
||||
"reason": "The mark spans adjacent text nodes, counted once per node where CommonMark nests one element."
|
||||
}
|
||||
]
|
||||
|
||||
@@ -0,0 +1,346 @@
|
||||
[
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 21
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 31
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 148
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 149
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 150
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 151
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 152
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 153
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 154
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 155
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 156
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 157
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 158
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 159
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 160
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 161
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 162
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 163
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 164
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 165
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 166
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 167
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 168
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 169
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 170
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 171
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 172
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 173
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 174
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 175
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 176
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 177
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 178
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 179
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 180
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 181
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 182
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 183
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 184
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 185
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 186
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 187
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 188
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 189
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 190
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 191
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 201
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 308
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 309
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 344
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 475
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 476
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 477
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 491
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 494
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 517
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 524
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 531
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 536
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 572
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 573
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 576
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 577
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 579
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 584
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 585
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 586
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 587
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 588
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 589
|
||||
},
|
||||
{
|
||||
"code": "unmappable-image",
|
||||
"example": 591
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 613
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 614
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 615
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 616
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 617
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 623
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 625
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 626
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 627
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 628
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 629
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 630
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 631
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 642
|
||||
},
|
||||
{
|
||||
"code": "unmappable-html",
|
||||
"example": 643
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user