Skip to content

Commit 0e3871f

Browse files
authored
Update markupParser.ts
1 parent f9c3ba1 commit 0e3871f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/markupParser.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,6 @@ export function parseMarkup(sourceUri: vscode.Uri, sourceText: string) {
196196
}
197197
}
198198

199-
// if (tag.match(/^s*$/)) {
200-
// tag = '<br />';
201-
// }
202-
203199
//close table
204200
if (!tag.match(/<\/tr>$/) && tableFlag) {
205201
tag = '</table>' + tag;
@@ -210,4 +206,4 @@ export function parseMarkup(sourceUri: vscode.Uri, sourceText: string) {
210206
}
211207

212208
return result;
213-
}
209+
}

0 commit comments

Comments
 (0)