我也阅读了有关documenting Kotlin code和this 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文档中创建表格吗?