记录Kotlin代码:如何创建表?

时间:2018-12-22 10:32:05

标签: kotlin code-documentation kdoc

我也阅读了有关documenting Kotlin codethis article的这篇文章。我尝试了这段代码:

 /**
 * | First Header  | Second Header |
 * | ------------- | ------------- |
 * | Content Cell  | Content Cell  |
 * | Content Cell  | Content Cell  |
 */

这:

 /**
 * This is a regular paragraph.
 *
 * <table>
 * <tr>
 * <td>Foo</td>
 * </tr>
 * </table>
 *
 * This is another regular paragraph.
 */

我还尝试删除了*个字符:

 /**
  | First Header  | Second Header |
  | ------------- | ------------- |
  | Content Cell  | Content Cell  |
  | Content Cell  | Content Cell  |
 */

但是什么也没发生。当我们编写大量代码时,文档很重要。

那么,您知道如何在Kotlin文档中创建表格吗?

0 个答案:

没有答案