Avand Amiri
Avand Amiri
Take a look at this [demo](http://demo.showdownjs.com/#!#%2F%23%23%20Tables%0A%0ATables%20aren't%20part%20of%20the%20core%20Markdown%20spec,%20but%20they%20are%20part%20of%20GFM%20and%20Showdown%20supports%20them%20by%20turning%20on%20the%20option%20%60tables%60.%0A%0AColons%20can%20be%20used%20to%20align%20columns.%0A%0AIn%20the%20new%20version,%20the%20outer%20pipes%20(%60%7C%60)%20are%20optional,%20matching%20GFM%20spec.%20%0A%0AYou%20also%20don't%20need%20to%20make%20the%20raw%20Markdown%20line%20up%20prettily.%0A%0AYou%20can%20also%20use%20other%20markdown%20syntax%20inside%20them.%0A%0A%7C%20Tables%20%20%20%20%20%20%20%20%7C%20Are%20%20%20%20%20%20%20%20%20%20%20%7C%20Cool%20%20%7C%0A%7C%20-------------%20%7C:-------------:%7C%20-----:%7C%0A%7C%20**col%203%20is**%20%20%7C%20right-aligned%20%7C%20$1600%20%7C%0A%7C%20col%202%20is%20%20%20%20%20%20%7C%20*centered*%20%20%20%20%7C%20%20%20$12%20%7C%0A%7C%20zebra%20stripes%20%7C%20~~are%20neat~~%20%20%7C%20%20%20%20$1%20%7C). It utilizes the table centering from GFM (e.g. `:---:`) but doesn't appear to be working. The table on the left is all left-aligned. This...
I recently installed the latest version of taps (v0.3.13) on Ruby 1.9.2p0 (installed via RVM) and I'm getting some strange output. This is completely non-critical, but it clutters up the...
Allows you to do something like this: ``` js var animals = ["cats", "dogs", "fish"]; "cats".$in(animals); // => true "llama".$in(animals); // => false ```
If the browser supports Promises and XHR method isn't given a success or error callback, the it's safe to assume the caller wants a Promise to be returned. I like...
Give the project a home.
Maybe just use the `$()` just like jQuery but call down to `document.querySelectorAll()` instead. Just to save some keystrokes.
Going along with #38, it would also be great to be able to easily tell a form to submit asynchronously. In other projects, I've had a way to say "submit...
Sprinkles has a basic `$get()` and `$getJSON()`, which address 90% of my daily needs. I almost never do a POST but it seems incomplete not to have it.