diff --git a/commonmark-ext-gfm-strikethrough/src/main/java/org/commonmark/ext/gfm/strikethrough/StrikethroughExtension.java b/commonmark-ext-gfm-strikethrough/src/main/java/org/commonmark/ext/gfm/strikethrough/StrikethroughExtension.java index 7d277fd7..4f0228a1 100644 --- a/commonmark-ext-gfm-strikethrough/src/main/java/org/commonmark/ext/gfm/strikethrough/StrikethroughExtension.java +++ b/commonmark-ext-gfm-strikethrough/src/main/java/org/commonmark/ext/gfm/strikethrough/StrikethroughExtension.java @@ -30,11 +30,13 @@ *
* If you have another extension that only uses a single tilde ({@code ~}) syntax, you will have to configure this * {@link StrikethroughExtension} to only accept the double tilde syntax, like this: + *
** {@code * StrikethroughExtension.builder().requireTwoTildes(true).build(); * } *+ *
* If you don't do that, there's a conflict between the two extensions and you will get an * {@link IllegalArgumentException} when constructing the parser. *