(fcb *ast.FencedCodeBlock, source []byte, msg string)
| 277 | } |
| 278 | |
| 279 | func fcbError(fcb *ast.FencedCodeBlock, source []byte, msg string) error { |
| 280 | return lineError{line: fcbLineNumber(fcb, source), msg: msg} |
| 281 | } |
| 282 | |
| 283 | func fcbInfoWords(fcb *ast.FencedCodeBlock, source []byte) []string { |
| 284 | return strings.Fields(string(fcb.Info.Segment.Value(source))) |
no test coverage detected