From 5189762ae963ccf20f3d25588feb5cfd352b8877 Mon Sep 17 00:00:00 2001 From: Marcel Kloubert Date: Thu, 23 Nov 2017 02:16:01 +0100 Subject: [PATCH] added missing documentation --- src/content.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/content.ts b/src/content.ts index a72b9cb..c2e8a34 100644 --- a/src/content.ts +++ b/src/content.ts @@ -75,6 +75,13 @@ export class HtmlTextDocumentContentProvider implements vscode.TextDocumentConte [ uri ])); } + /** + * Returns a HTML document by its URI. + * + * @param {vscode.Uri} uri The URI. + * + * @return {string} The HTML content. + */ protected getHtmlDoc(uri: vscode.Uri): string { let htmlDocs = this.controller.htmlDocuments;