2022-02-04 16:28:24 +00:00

35 lines
507 B
Plaintext

HTML-style comments are not part of EcmaScript specification, and should not be used.
== Noncompliant Code Example
[source,javascript]
----
<!-- Noncompliant -->
----
== Compliant Solution
[source,javascript]
----
// Compliant
/* Compliant */
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]