Skip to content

Commit fb96d68

Browse files
Force in something that works
1 parent 1bd6633 commit fb96d68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
143143
const buf: Node | undefined = bufArray.pop();
144144

145145
if (buf && typeof buf === 'object' && buf.location && parser.endIndex !== null) {
146-
buf.location.end = locationTracker.getPosition(parser.endIndex);
146+
buf.location.end = locationTracker.getPosition((!parser.tagname || parser.tagname === buf.tag) ? parser.endIndex : parser.startIndex - 1);
147147
}
148148

149149
if (buf) {

0 commit comments

Comments
 (0)