21 lines
231 B
Plaintext
21 lines
231 B
Plaintext
Each element should be on a line to itself.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,text]
|
|
----
|
|
<parent><child /></parent> <!-- Noncompliant -->
|
|
----
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
<parent>
|
|
<child />
|
|
</parent>
|
|
----
|
|
|