We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 183bd26 commit 440348aCopy full SHA for 440348a
README.md
@@ -374,4 +374,18 @@ To use graphviz inside javadoc comments, add this to `pom.xml`:
374
</build>
375
```
376
To use this with JDK 9 or later, replace `graphviz-taglet`
377
-with `graphviz-taglet9`.
+with `graphviz-taglet9`.
378
+
379
+The usage inside javadoc is then as follows:
380
+```java
381
+/**
382
+ * Support graphviz inside javadoc.
383
+ * <p>
384
+ * {@graphviz
385
+ * graph test { a -- b }
386
+ * }
387
+ * </p>
388
+ * So easy.
389
+ */
390
+public class GraphvizTaglet implements Taglet {}
391
+```
0 commit comments