(list_data, item_data)
| 193 | // with the same delimiter and bullet character. This is used |
| 194 | // in agglomerating list items into lists. |
| 195 | var listsMatch = function(list_data, item_data) { |
| 196 | return (list_data.type === item_data.type && |
| 197 | list_data.delimiter === item_data.delimiter && |
| 198 | list_data.bulletChar === item_data.bulletChar); |
| 199 | }; |
| 200 | |
| 201 | // Finalize and close any unmatched blocks. |
| 202 | var closeUnmatchedBlocks = function() { |