Structure browser: link tags in html files
Submitted by Friday, 13 August, 2004 - 13:47
on
I use jEdit 4.2pre15 on Mac OS X 10.3.5, java version 1.4.2. The structure browser can't parse html files correctly if there are these kind of <link> tags in the head:
Is there anything I can do to change the parse behavior of structure browser on this link tags?
<link rel="stylesheet" href="stil.css" type="text/css">The structure browser doesn't seem do recognize the end of this tag, and shows everything that follows as a cascade within this link tag. It also doesen't recognize end tags of some following tags (ignoring tags, for example). It looks like this:
doctype html head title link body table div divinsteat of this:
doctype html head title link body table div divBut if I change the link tag like this:
<link rel="stylesheet" href="stil.css" type="text/css" />(including " />" then everything is okay. But this is not correct syntax for my HTML 4.01 Transitional documents. The w3c validator criticises it, and jtidy removes the " /".
Is there anything I can do to change the parse behavior of structure browser on this link tags?