tweak markdown string conversion and rendering

This commit is contained in:
Johannes Rieken
2018-11-09 10:45:12 +01:00
parent 0b99867455
commit d4116a8f38
6 changed files with 88 additions and 24 deletions

View File

@@ -4,10 +4,12 @@
*--------------------------------------------------------------------------------------------*/
import { equals } from 'vs/base/common/arrays';
import { UriComponents } from 'vs/base/common/uri';
export interface IMarkdownString {
value: string;
isTrusted?: boolean;
uris?: { [href: string]: UriComponents };
}
export class MarkdownString implements IMarkdownString {