mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-06-19 10:05:07 -04:00
* Merge from vscode merge-base * Turn off basic checks * Enable compilation, unit, and integration tests
21 lines
810 B
TypeScript
21 lines
810 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { Command } from '../commandManager';
|
|
import { MarkdownItEngine } from '../markdownEngine';
|
|
import { ITextDocument } from '../types/textDocument';
|
|
|
|
export class RenderDocument implements Command {
|
|
public readonly id = 'markdown.api.render';
|
|
|
|
public constructor(
|
|
private readonly engine: MarkdownItEngine
|
|
) { }
|
|
|
|
public async execute(document: ITextDocument | string): Promise<string> {
|
|
return (await (this.engine.render(document))).html;
|
|
}
|
|
}
|