Tad Lispy

Results 49 comments of Tad Lispy

Got it! Thank you @emschwartz. For future reference, to get it to work I needed to remove the ampersand before the `root` argument to `comrak::format_commonmark`, like this: ``` diff //...

A follow up question if I may. Is there a way to avoid passing the reference to arena from the `main` function where it's created all the way down to...

Here is a workaround in CoffeeScript (sorry, I'm in a hurry): ```coffeescript observer = new MutationObserver () => # StayFocusd document .querySelector '#StayFocusd-infobar' ?.remove() observer.observe document.body, childList: true subtree: true...

Honestly I am not. Everything I know about syntaxes in ST2 I've learned while trying to resolve this issue. I've red [this document about syntax definitions](http://sublimetext.info/docs/en/extensibility/syntaxdefs.html#creating-a-new-syntax-definition). It seems to mainly...

It seems they are always indented one extra level. If you change indentation size, subsequent lines will be pushed to the right by that size. After some research I see...

I've just noticed that wrapped comments are indented correctly. Take a look at line 21 with and without comment. ![comment](https://f.cloud.github.com/assets/1684495/349423/82d73fac-9fc2-11e2-939a-bc7d7b19b384.png) ![no-comment](https://f.cloud.github.com/assets/1684495/349424/83056aee-9fc2-11e2-9828-f5a26a1b1a0f.png)

Hey @maximsmol! Thanks for picking interest in my issue and sorry for late response. TBH I don't remember the context of this issue very well. Here is a relevant discussion:...

Hi! Thanks for this package. We are experimenting with converting Richard Feldman's implementation of the Real World SPA to use Elm Bootstrap. One immediate problem is [the Navbar](https://github.com/niteoweb/elm-spa-example/pull/3). In the...

Since all examples have specific syntax (the `--> ...` part) maybe it should be a default behavior?

Would it make sense to just read it from `elm.json`? Together with #62 it would make elm-verify-examples work without any configuration. Just run and see the tests' results!