diff options
author | John MacFarlane <[email protected]> | 2014-12-13 12:08:19 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-12-13 12:09:25 -0800 |
commit | 8d6efe632aaeb1831c86b27e120a344c5e3ee7d4 (patch) | |
tree | 709393e79901bb426bd853c231e20442948e1551 /src/html.c | |
parent | a6a7d2f8f47df7144e636ae2875a8d2ffc0173ae (diff) |
API improvements: cmark_event_type parameter for walk handlers.
Added cmark_event_type enum, which is used as the second
parameter of the handler passed to cmark_walk.
See #224.
Diffstat (limited to 'src/html.c')
-rw-r--r-- | src/html.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -39,7 +39,7 @@ struct render_state { }; static int -S_render_node(cmark_node *node, int entering, void *vstate) +S_render_node(cmark_node *node, cmark_event_type ev_type, void *vstate) { struct render_state *state = vstate; cmark_node *parent; @@ -50,6 +50,8 @@ S_render_node(cmark_node *node, int entering, void *vstate) strbuf *info; bool tight; + bool entering = (ev_type == CMARK_EVENT_ENTER); + if (state->plain == node) { // back at original node state->plain = NULL; } |