Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Commit

Permalink
added missing documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mkloubert committed Nov 23, 2017
1 parent 9365c85 commit 5189762
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 5189762

Please sign in to comment.