(type)
| 250 | } |
| 251 | |
| 252 | function attributes(type) { |
| 253 | if (type == "word") {setStyle = "attribute"; return cont(attribute, attributes);} |
| 254 | if (type == "endTag" || type == "selfcloseTag") return pass(); |
| 255 | setStyle = "error"; |
| 256 | return cont(attributes); |
| 257 | } |
| 258 | function attribute(type) { |
| 259 | if (type == "equals") return cont(attvalue, attributes); |
| 260 | if (!Kludges.allowMissing) setStyle = "error"; |