Malcolm Sparks

Results 25 issues of Malcolm Sparks

Would be nice to invoke joplin via boot tasks. http://boot-clj.com/

In the official test suite, the tests in this group are failing. Not sure why - possibly something to do with differences in js regexes.

bug
good first issue

Computing regexes for ranges for code-points can be slow. Therefore, code-points beyond the Basic Multilingual Plane are not yet supported. A faster approach is needed. *Allen's interval algebra* may offer...

enhancement

These formats are not yet supported but could be added.

good first issue

I'm not sure why this works :- ``` ((parser {:main :name} :nameStartChar #"[\w]" :nameChar #"[\w]*" :name [:nameStartChar :nameChar] ) "foo") ``` returning ``` #net.cgrand.parsley.Node{:tag :net.cgrand.parsley/root, :content [#net.cgrand.parsley.Node{:tag :name, :content [#net.cgrand.parsley.Node{:tag...