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 bf6ddbf commit 5bb6f48Copy full SHA for 5bb6f48
src/utils/lwcparser/htmlParser/HTMLParser.ts
@@ -26,7 +26,6 @@ class HTMLParser {
26
}
27
28
// Method to replace custom tags
29
- // eslint-disable-next-line @typescript-eslint/member-ordering
30
public replaceCustomTag(oldTag: string, newTag: string): void {
31
this.parser(oldTag).each((_, element) => {
32
const newElement = this.parser(`<${newTag}></${newTag}>`).html(this.parser(element).html());
@@ -35,7 +34,6 @@ class HTMLParser {
35
34
36
37
// Method to save modified HTML back to a file
38
39
public saveToFile(outputFilePath: string): void {
40
try {
41
const modifiedHtml = this.parser.html();
0 commit comments