作者:手机用户2502923607 | 来源:互联网 | 2022-12-22 15:39
假设我们有这样的文件字符串
/** retrieve a state of the service
*
HTTP code 200 - normal state
*
HTTP code 403 - some recoverable state:
const val SERVICE_STATE = "servicestate" */
这里有几个
,我用来打破一条线,就像我在java中做的那样,但AndroidStudio的输出(在InteliJIdea中看起来相同)是
使用java,它被正确解析和显示:
/** retrieve a state of the service
*
HTTP code 200 - normal state
*
HTTP code 403 - some recoverable state */
public static final String SERVICE_STATE = "servicestate";
我能以某种方式与kotlin和IntelijIdea达到同样的目的,也许kotlin可以在KDoc中打破这条线吗?
1> hotkey..:
KDoc格式使用Markdown语法而不是HTML,并且基本Markdown不提供在不启动新段落的情况下断行的方法.
我不确定为什么Kotlin IntellIJ插件不支持
或双空间黑客攻击.
如果开始一个新的段落是好的,只需跳过一个空行:
/**
* retrieve a state of the service
*
* HTTP code 200 - normal state
*
* HTTP code 403 - some recoverable state:
*/
结果是: