This table contains information on polygon cells which are not
included in ISO 10303-52. Remove table 2 completely and replace
with:
Table 2 — Edges of triangle and quadrilateral cells
triangle
quadrilateral
edge
vertices
edge
vertices
1
1, 2
1
1, 2
2
2, 3
2
2, 3
3
3, 1
3
3, 4
4
4, 1
EXAMPLE 7
This is not generalised further.
OUTPUT
html = <<~OUTPUT
Document title
1. Change Clause
This table contains information on polygon cells which are not
included in ISO 10303-52. Remove table 2 completely and replace
with:
Table 2 — Edges of triangle and quadrilateral cells
triangle
quadrilateral
edge
vertices
edge
vertices
1
1, 2
1
1, 2
2
2, 3
2
2, 3
3
3, 1
3
3, 4
4
4, 1
Figure
EXAMPLE 7
This is not generalised further.
OUTPUT
expect(xmlpp(IsoDoc::PresentationXMLConvert.new({}).convert("test", input, true)).sub(%r{.*}m, "")).to be_equivalent_to xmlpp(presxml)
expect(xmlpp(IsoDoc::HtmlConvert.new({}).convert("test", presxml, true))).to be_equivalent_to xmlpp(html)
end
it "processes unlabelled notes (Presentation XML)" do
expect(xmlpp(IsoDoc::PresentationXMLConvert.new({}).convert("test", <<~"INPUT", true))).to be_equivalent_to xmlpp(<<~"OUTPUT")
These results are based on a study carried out on three different types of kernel.
INPUT
NOTE
These results are based on a study carried out on three different
types of kernel.
OUTPUT
end
it "processes unlabelled notes (HTML)" do
expect(xmlpp(IsoDoc::HtmlConvert.new({}).convert("test", <<~"INPUT", true))).to be_equivalent_to xmlpp(<<~"OUTPUT")
NOTE
These results are based on a study carried out on three different
types of kernel.
INPUT
#{HTML_HDR}
Foreword
NOTE These results are based on a study carried out on three different types of kernel.