(tag []byte, i int)
| 213 | } |
| 214 | |
| 215 | func skipSpace(tag []byte, i int) int { |
| 216 | for i < len(tag) && isspace(tag[i]) { |
| 217 | i++ |
| 218 | } |
| 219 | return i |
| 220 | } |
| 221 | |
| 222 | func isRelativeLink(link []byte) (yes bool) { |
| 223 | // a tag begin with '#' |
no test coverage detected
searching dependent graphs…