Commit dcc4cdb
committed
docs(pallet-tests): keep multi-line <c> on one line for docfx
The class-level XML doc comment on PalletMeasurementContractTests
wrapped a single `<c>PhysicalAsset > Pallet > Measurements</c>`
span across two source lines:
/// Per the MTConnect SysML model, the <c>PhysicalAsset > Pallet
/// > Measurements</c> package declares ...
docfx flattens the wrapped XML doc into adjacent markdown lines,
producing a line that starts with `> Measurements</code> package
declares ...`. The leading `> ` is then re-parsed as a markdown
blockquote, eating the `</code>` close tag and tripping Vue's
"Element is missing end tag" error during the Docs-site CI's Build
VitePress site job.
Reflow the comment so the `<c>...</c>` span fits on one line. The
generated markdown then carries the full code span on a single line
and the blockquote-collision goes away.1 parent f7290a1 commit dcc4cdb
1 file changed
Lines changed: 2 additions & 2 deletions
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
19 | | - | |
| 18 | + | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
0 commit comments