(stream, state)
| 199 | } |
| 200 | |
| 201 | function local(stream, state) { |
| 202 | if (stream.sol() && stream.match("```", false)) { |
| 203 | state.localMode = state.localState = null; |
| 204 | state.f = state.block = leavingLocal; |
| 205 | return null; |
| 206 | } else if (state.localMode) { |
| 207 | return state.localMode.token(stream, state.localState); |
| 208 | } else { |
| 209 | stream.skipToEnd(); |
| 210 | return code; |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | function leavingLocal(stream, state) { |
| 215 | stream.match("```"); |
nothing calls this directly
no outgoing calls
no test coverage detected