Skip to content

Commit dcc4cdb

Browse files
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 &gt; Pallet &gt; Measurements</c>` span across two source lines: /// Per the MTConnect SysML model, the <c>PhysicalAsset &gt; Pallet /// &gt; 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

File tree

tests/MTConnect.NET-Common-Tests/Assets/Pallet/PalletMeasurementContractTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ namespace MTConnect.Tests.Common.Assets.Pallet
1515
/// scaffolding produced by the SysML measurement template, in
1616
/// parity with the long-standing CuttingTools measurement DTOs.
1717
///
18-
/// Per the MTConnect SysML model, the <c>PhysicalAsset &gt; Pallet
19-
/// &gt; Measurements</c> package declares ten concrete measurement
18+
/// Per the MTConnect SysML model, the <c>PhysicalAsset &gt; Pallet &gt; Measurements</c>
19+
/// package declares ten concrete measurement
2020
/// subclasses (Weight, Height, Width, Length, Swing plus their
2121
/// Loaded* counterparts) that generalize from an abstract
2222
/// <c>Measurement</c> base. The C# generator must emit each one

0 commit comments

Comments
 (0)