MCPcopy Index your code
hub / github.com/witheve/Eve / listsMatch

Function listsMatch

src/commonmark.js:195–199  ·  view source on GitHub ↗
(list_data, item_data)

Source from the content-addressed store, hash-verified

193// with the same delimiter and bullet character. This is used
194// in agglomerating list items into lists.
195var 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.
202var closeUnmatchedBlocks = function() {

Callers 1

commonmark.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected