zdenko
zdenko
This PR adds an offline search feature for docs ([preview](https://rawgit.com/zdenko/coffeescript/docSearch/docs/v2/index.html)) During the `doc:site` task, search catalogs are build by parsing the content. To be able to build the hierarchy of...
This PR adds support for a [fragments](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment). Currently Jadelet requires a single root element (e.g., HTML element) in the template. However, there are cases where HTML root element can be...
This PR fixes a bug with `firstIndent` in the `reduceLines` function. The `Indent` token consists of two space character groups or one tab. In my previous, quick [solution](https://github.com/STRd6/jadelet/issues/23#issuecomment-915169873), I forgot...
Ideas
I have few proposals related to the great [news](https://github.com/STRd6/glitch.com/issues/2) :smile: Jadelet, because of its simplicity and aesthetics, is also my favorite choice whenever possible. So, I would like to see...
Would it be wrong if the missing root element is automatically added: So ```jade .one .two ``` becomes ```jade div .one .two ``` I did a test with a small...
While working on a project of mine I added a few methods for the observable object, which I find useful. Proxy object properties: ```coffeescript obj = Observable a: 1 assert.equal...