rspec/rules/S1451/html/rule.adoc

19 lines
240 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
<html> <!-- Noncompliant -->
...
</html>
----
== Compliant Solution
----
<!-- Copyright 2013 SonarSource SA -->
<html>
...
</html>
----