元素
KOOK 开发者文档 - 卡片消息 - 元素
普通文本 plain
属性 |
类型 |
默认值 |
必需 |
说明 |
emoji |
bool |
true |
|
如果为 true,会把 emoji 的 shortcut 转为 emoji |
<plain emoji="false">Some text</plain>
KMarkdown kmarkdown
<kmarkdown>**hello**</kmarkdown>
图片 image
属性 |
类型 |
默认值 |
必需 |
说明 |
src |
anyURI |
null |
✅ |
图片 URL,必须以 https:// 开头 |
alt |
string |
null |
|
图片的替代文本 |
size |
string |
null |
|
图片的尺寸,可选值为 small large |
circle |
bool |
false |
|
是否显示为圆形 |
<image src="https://img.kaiheila.cn/assets/2021-01/pWsmcLsPJq08c08c.jpeg"
alt="Alt message"
size="large"
circle="true" />
属性 |
类型 |
默认值 |
必需 |
说明 |
theme |
string |
null |
|
按钮主题,可选值为 primary success danger warning info secondary |
value |
string |
null |
|
按钮需要传递的 value |
click |
string |
null |
|
按钮事件类型,可选值为 link return-val |
<button theme="danger" click="return-val" value="TEST_VALUE">
<kmarkdown>**测试按钮**</kmarkdown>
</button>