(tag []byte, tagname string)
| 149 | } |
| 150 | |
| 151 | func isHTMLTag(tag []byte, tagname string) bool { |
| 152 | found, _ := findHTMLTagPos(tag, tagname) |
| 153 | return found |
| 154 | } |
| 155 | |
| 156 | // Look for a character, but ignore it when it's in any kind of quotes, it |
| 157 | // might be JavaScript |
nothing calls this directly
no test coverage detected
searching dependent graphs…