(state, line)
| 1486 | |
| 1487 | // yaml meta, from https://github.com/eugeneware/remarkable-meta |
| 1488 | function get (state, line) { |
| 1489 | const pos = state.bMarks[line] |
| 1490 | const max = state.eMarks[line] |
| 1491 | return state.src.substr(pos, max - pos) |
| 1492 | } |
| 1493 | |
| 1494 | function meta (state, start, end, silent) { |
| 1495 | if (start !== 0 || state.blkIndent !== 0) return false |
no outgoing calls
no test coverage detected