| 327 | // Span Element callbacks |
| 328 | |
| 329 | static int rndr_codespan(struct buf *ob, struct buf *text, void *opaque) { |
| 330 | return ((Bypass::Parser*) opaque)->parsedCodeSpan(ob, text); |
| 331 | } |
| 332 | |
| 333 | static int rndr_double_emphasis(struct buf *ob, struct buf *text, char c, void *opaque) { |
| 334 | return ((Bypass::Parser*) opaque)->parsedDoubleEmphasis(ob, text, c); |
nothing calls this directly
no test coverage detected