diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-07-08 17:42:22 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-07-10 14:24:22 -0700 |
commit | 17e6720dd9b5d25aeb906bb23915a6ee13a07e3d (patch) | |
tree | 368489317ca19a0136bba3381be4ab219b1eaf21 /src/node.h | |
parent | 039098095da3a31dd338f2a1137e673d914489ea (diff) |
Updates for new HTML block spec.
* Rewrote spec for HTML blocks. A few other spec examples
also changed as a result.
* Removed old `html_block_tag` scanner. Added new
`html_block_start` and `html_block_start_7`, as well
as `html_block_end_n` for n = 1-5.
* Rewrote block parser for new HTML block spec.
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -69,6 +69,7 @@ struct cmark_node { cmark_code code; cmark_header header; cmark_link link; + int html_block_type; } as; }; |