提交 30a6e1f5 编写于 作者: J Johannes Rieken

update jsdoc for MarkedString

上级 b0891a91
...@@ -1333,9 +1333,9 @@ declare namespace vscode { ...@@ -1333,9 +1333,9 @@ declare namespace vscode {
} }
/** /**
* FormattedString can be used to render text with a tiny subset of markdown. FormattedString * MarkedString can be used to render human readable text. It is either a markdown string
* is either a string that supports **bold** and __italic__ or a code-block that * or a code-block that provides a language and a code snippet. Note that
* provides a language and a code Snippet. * markdown strings will be sanitized - that means html will be escaped.
*/ */
export type MarkedString = string | { language: string; value: string }; export type MarkedString = string | { language: string; value: string };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册