Files
kotlin-fork/j2k/testData/fileOrElement/docComments/htmlInDocComment.java
T
2015-03-03 18:31:30 +01:00

16 lines
430 B
Java
Vendored

/**
* We support the following HTML styles: <b>bold</b>, <i>italic</i>, <s>strikethrough</s>, <code>code</code>
* <p>Paragraph tags also work.</p>
* HTML entities (need to remain as is in Markdown): &amp; &lt; &gt; &quot;
* Made by <a href="http://www.jetbrains.com">JetBrains</a>
* <ul>
* <li>Kotlin</li>
* <li>Java</li>
* </ul>
* <ol>
* <li>First</li>
* <li>Second</li>
* </ol>
*/
public class C {
}