(p *Markdown, data []byte, offset int)
| 222 | } |
| 223 | |
| 224 | func maybeInlineFootnote(p *Markdown, data []byte, offset int) (int, *Node) { |
| 225 | if offset < len(data)-1 && data[offset+1] == '[' { |
| 226 | return link(p, data, offset) |
| 227 | } |
| 228 | return 0, nil |
| 229 | } |
| 230 | |
| 231 | // '[': parse a link or an image or a footnote |
| 232 | func link(p *Markdown, data []byte, offset int) (int, *Node) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…