diff options
Diffstat (limited to 'core/testdata/format')
-rw-r--r-- | core/testdata/format/javadocHtml.java | 12 | ||||
-rw-r--r-- | core/testdata/format/javadocHtml.md | 16 |
2 files changed, 28 insertions, 0 deletions
diff --git a/core/testdata/format/javadocHtml.java b/core/testdata/format/javadocHtml.java index 622116b2..9e77402e 100644 --- a/core/testdata/format/javadocHtml.java +++ b/core/testdata/format/javadocHtml.java @@ -9,6 +9,18 @@ * <code>Code</code> * <pre>Block code</pre> * <ul><li>List Item</li></ul> + * <pre> + * with( some ) { + * multi = lines + * sample() + * } + * </pre> + * <pre> + * {@code + * with (some) { <code> } + * } + * </pre> + * */ public class C { } diff --git a/core/testdata/format/javadocHtml.md b/core/testdata/format/javadocHtml.md index 9b501fcb..77f6c829 100644 --- a/core/testdata/format/javadocHtml.md +++ b/core/testdata/format/javadocHtml.md @@ -16,6 +16,22 @@ Block code * List Item + +``` + + with( some ) { + multi = lines + sample() + } + ``` + + + +``` +with (some) { <code> } + + ``` + ### Constructors | [<init>](-init-.md) | `C()`<br>**Bold** **Strong** *Italic* *Emphasized* | |