(fcb *ast.FencedCodeBlock, source []byte)
| 285 | } |
| 286 | |
| 287 | func fcbLineNumber(fcb *ast.FencedCodeBlock, source []byte) int { |
| 288 | return bytes.Count(source[:fcb.Info.Segment.Start], []byte("\n")) + 1 |
| 289 | } |
| 290 | |
| 291 | func fcbLines(fcb *ast.FencedCodeBlock, source []byte) string { |
| 292 | var b strings.Builder |
no outgoing calls
no test coverage detected