rspec/rules/S1460/html/rule.adoc

40 lines
547 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
2021-04-28 16:49:39 +02:00
Checker to find use of double quote where single quote is preferred.
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,html]
2021-04-28 16:49:39 +02:00
----
<div id="header"></div>
----
=== Compliant solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,html]
2021-04-28 16:49:39 +02:00
----
<div id='header'></div>
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Use single quotes instead of double ones.
'''
== Comments And Links
(visible only on this page)
=== relates to: S1457
endif::env-github,rspecator-view[]