Ben Cook

Results 15 comments of Ben Cook

is this a problem w/ draft-js, fixable by this open pr from a year ago? https://github.com/facebook/draft-js/pull/769

@JimFung I don't think that's contradictory to the bug report. - To indent the item, cursor is at the start of a bullet point and you Tab - To break...

Hi - I wrote this as a learning exercise, you're welcome to poke around at it and adapt if you like: https://gist.github.com/blx/e6970121d629ca2dbd49 It's pretty rough and doesn't support `>` selectors...

@Immortalin That doesn't currently seem to support pseudoclasses or attributes: ``` clojure user=> (gist/parse-css "div.blue:first-of-type input.red[type=text]") [:div.blue :input.red] ``` but it looks like you could add formatters for those reasonably...

This is annoying, yes, but it's mostly a problem with Jinja, not PyJade. PyJade for jinja is implemented as a jinja extension that preprocesses source templates on demand and does...

Hi, This is also in #221, where the solution was to install from the github master branch instead of PyPI -- maybe try that?

We can already use django's own include tag with the hyphen templatetag ``` jade - include "foo" with bar=baz ``` so it seems to me that keeping compatibility with Jade...

Without digging into the code I'm not sure of the details, but here is a workaround: ``` jade each index, val in {'ren':'one', 'bra':'two', 'elv':'three'}.items() // or .iteritems() for large...

^ that won't quite work, it'll print `no users!` and then carry on to fail at the loop. This is a bug. For now you could do this manually (uuugly):...

Another thing: pyjade allows an `else` with no `if`: ``` jade else p Oh no! ``` through the html compiler yields ``` html Oh no! ``` whereas jade(js) throws `Unexpected...