aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/javadocHtml.java
blob: 9e77402e50d7e26a88f1df51dc1e34d47bb4160d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * <b>Bold</b>
 * <strong>Strong</strong>
 * <i>Italic</i>
 * <em>Emphasized</em>
 * <p>Paragraph</p>
 * <s>Strikethrough</s>
 * <del>Deleted</del>
 * <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 {
}