2023-05-03 11:06:20 +02:00
|
|
|
== Why is this an issue?
|
|
|
|
|
2022-06-02 13:35:04 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
2023-05-03 11:06:20 +02:00
|
|
|
=== Noncompliant code example
|
2022-06-02 13:35:04 +02:00
|
|
|
|
|
|
|
[source,javascript]
|
|
|
|
----
|
|
|
|
/a[b]c/
|
|
|
|
/[\^]/
|
|
|
|
----
|
|
|
|
|
2023-05-03 11:06:20 +02:00
|
|
|
=== Compliant solution
|
2022-06-02 13:35:04 +02:00
|
|
|
|
|
|
|
[source,javascript]
|
|
|
|
----
|
|
|
|
/abc/
|
|
|
|
/\^/
|
|
|
|
/a[*]c/ // Compliant, see Exceptions
|
|
|
|
----
|
|
|
|
|
|
|
|
include::../exceptions.adoc[]
|
|
|
|
|
|
|
|
include::../implementation.adoc[]
|