mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
first steps in supporting markdown preview
This commit is contained in:
@@ -6,6 +6,9 @@
|
||||
'use strict';
|
||||
|
||||
export interface IHTMLContentElement {
|
||||
/**
|
||||
* supports **bold**, __italics__, and [[actions]]
|
||||
*/
|
||||
formattedText?:string;
|
||||
text?: string;
|
||||
className?: string;
|
||||
@@ -13,7 +16,8 @@ export interface IHTMLContentElement {
|
||||
customStyle?: any;
|
||||
tagName?: string;
|
||||
children?: IHTMLContentElement[];
|
||||
code?: { language: string; value: string; };
|
||||
isText?: boolean;
|
||||
role?: string;
|
||||
markdown?: string;
|
||||
code?: { language: string; value: string; };
|
||||
}
|
||||
Reference in New Issue
Block a user