this repo has no description

`[key=value]` requires alphanumeric keys now

12Me21 c3662f9f 7e1aa792

+4 -3
+4 -3
parse.js
··· 78 78 let list = [], named = {} 79 79 list.named = named 80 80 for (let arg of arglist.split(";")) { 81 - let [, name, value] = /^(?:([^=]*)=)?(.*)$/.exec(arg) 81 + let [, name, value] = /^(?:([-\w]*)=)?(.*)$/.exec(arg) 82 82 // value OR =value 83 83 // (this is to allow values to contain =. ex: [=1=2] is "1=2") 84 84 if (!name) ··· 477 477 body = true // ghhhh? 478 478 //BLOCK('anchor', {id}) 479 479 } break; case '\\link': { 480 - let args = {url: rargs[0]} 480 + let [url=""] = rargs 481 + let args = {url} 481 482 if (body) { 482 483 OPEN('link', args) 483 484 } else { ··· 648 649 let indent = token.indexOf("-") 649 650 OPEN('list_item', {indent, kind:rargs[0]==="1"?"1":undefined}) 650 651 } } 651 - 652 + 652 653 if (body) { 653 654 text = text.substring(last) 654 655 last = REGEX.lastIndex = 0