[annotator] fix highlighting syntax

This commit is contained in:
JohnHake 2020-03-30 19:01:36 -07:00
parent a0f75b1377
commit 997890a2aa

View File

@ -14,10 +14,10 @@ The first instance is a valid use of the `simple:` prefix followed by the Simple
The second is a valid prefix but an invalid key, as noted by the test `<error>` [highlighting](/basics/testing_plugins/testing_highlighting.md). The second is a valid prefix but an invalid key, as noted by the test `<error>` [highlighting](/basics/testing_plugins/testing_highlighting.md).
```java ```java
public class Test { public class Test {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("simple:website"); System.out.println("simple:website");
System.out.println("simple:<error descr="Unresolved property">websit"</error>); System.out.println("simple:<error descr="Unresolved property">websit</error>");
} }
} }
``` ```