(attr string, ignore []string)
| 207 | } |
| 208 | |
| 209 | func checkClasses(attr string, ignore []string) bool { |
| 210 | for _, class := range strings.Split(attr, " ") { |
| 211 | if core.StringInSlice(class, ignore) { |
| 212 | return true |
| 213 | } |
| 214 | } |
| 215 | return false |
| 216 | } |
| 217 | |
| 218 | // HACK: We need to look for inserted `spans` within `tt` tags. |
| 219 | // |
no test coverage detected
searching dependent graphs…