From 9256b85947e4c78ef3ee51e9076ce6fa3c5755f2 Mon Sep 17 00:00:00 2001 From: Ankit Singh Balyan Date: Wed, 27 May 2020 20:51:44 +0200 Subject: [PATCH] Convert HTML tags in doc-comments into markdown HTML tags in doc-comments don't get parsed properly by tools like TypeDoc, once it encounters an open HTML tag like in the comments, all the subsequent doc-comments become bold in the generated docs. --- src/lib/es2015.core.d.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/lib/es2015.core.d.ts b/src/lib/es2015.core.d.ts index 1487891d524..032a7afc0ec 100644 --- a/src/lib/es2015.core.d.ts +++ b/src/lib/es2015.core.d.ts @@ -434,48 +434,48 @@ interface String { startsWith(searchString: string, position?: number): boolean; /** - * Returns an HTML anchor element and sets the name attribute to the text value + * Returns an `` HTML anchor element and sets the name attribute to the text value * @param name */ anchor(name: string): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ big(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ blink(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ bold(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ fixed(): string; - /** Returns a HTML element and sets the color attribute value */ + /** Returns a `` HTML element and sets the color attribute value */ fontcolor(color: string): string; - /** Returns a HTML element and sets the size attribute value */ + /** Returns a `` HTML element and sets the size attribute value */ fontsize(size: number): string; - /** Returns a HTML element and sets the size attribute value */ + /** Returns a `` HTML element and sets the size attribute value */ fontsize(size: string): string; - /** Returns an HTML element */ + /** Returns an `` HTML element */ italics(): string; - /** Returns an HTML element and sets the href attribute value */ + /** Returns an `` HTML element and sets the href attribute value */ link(url: string): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ small(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ strike(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ sub(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ sup(): string; }