Alexis King

Results 47 issues of Alexis King

The current version doesn't support Markdown Extra's [special attributes](http://michelf.ca/projects/php-markdown/extra/#spe-attr). For example, the following Markdown should produce the subsequent HTML. ``` ~~~ .javascript var x = 7; ~~~ ``` ``` var...

ActiveRecord models include the [`attribute_names`](http://api.rubyonrails.org/classes/ActiveRecord/AttributeMethods/ClassMethods.html#method-i-attribute_names) method, which, as the name suggests, lists all the attributes the model exposes. As it turns out, [`ParamsWrapper`](http://api.rubyonrails.org/classes/ActionController/ParamsWrapper.html) uses the result of this method to...

v3
discussion
feature

This PR adds support for the ε-TeX `\dimexpr` command, which provides a simple expression language for combining sizes. In addition to making it easier for macros to programmatically compose sizes,...

The following example does not produce the HTML I would expect: ``` racket > (parse-markdown "This is a—*test*—with some—*em dash*—characters.") '((p () "This is a—*test*—with some—*em dash*—characters.")) ``` [Most markdown...

Originally discovered via [this Stack Overflow question](http://stackoverflow.com/q/28801595/465378). Given the following function: ``` racket (: first-value (All (A) (-> A (All (B) (-> B A))))) (define ((first-value a) b) a) ```...

I cannot get a single valid use of `for/last` to properly typecheck. Even this simple code fails. ``` racket (for/last ([i (in-range 10)]) i) ``` ``` Type Checker: type mismatch...

Given the following sort of code: ``` javascript rivets.formatters.sum = _.sum; var data = { vals: [1, 1, 1] }; var view = rivets.bind($('.view'), data); data.vals[0] = 2; view.update(data); ```...

For some reason, when I type the keybinding in DrRacket for Move Tab Left on my computer, I get an open curly double quote in my buffer instead of actually...

`examples` from `scribble/example` does not preserve the `'paren-shape` syntax property, and presumably drops other syntax properties as well. Given the following program: ```racket #lang scribble/manual @(require scribble/example) @(examples (syntax-property #'[1...

I’m not currently sure if this is an issue with hackage-server, acid-state, Docker, or something else, but I figured I would report it all the same. Here are the steps...

docker