We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b81f3f commit 866e35bCopy full SHA for 866e35b
tsdoc/src/configuration/TSDocConfiguration.ts
@@ -41,6 +41,7 @@ export class TSDocConfiguration {
41
this._supportedTagDefinitions.clear();
42
this._validation.ignoreUndefinedTags = false;
43
this._validation.reportUnsupportedTags = false;
44
+ this._validation.reportUnsupportedHtmlElements = false;
45
this._supportedHtmlElements.clear();
46
47
if (!noStandardTags) {
@@ -197,6 +198,7 @@ export class TSDocConfiguration {
197
198
*/
199
public setSupportedHtmlElements(htmlTags: string[]): void {
200
201
+ this._validation.reportUnsupportedHtmlElements = true;
202
for (const htmlTag of htmlTags) {
203
this._supportedHtmlElements.add(htmlTag);
204
}
0 commit comments