Sam O'Connor

Results 71 comments of Sam O'Connor

In my case, the documentation comes [from here](https://github.com/aws/aws-sdk-js/blob/master/apis/mturk-requester-2017-01-17.normal.json#L2323), and is converted to Julia doc strings by a code generator, so I can't easily change it. I guess the thing to...

It seems that `doc"""` does not solve the problem. The `$` is still treated as a variable. ```julia julia> VERSION v"0.6.0" julia> doc"""foo $bar""" ERROR: UndefVarError: bar not defined ```

Would you consider adding the following fallback methods to Documenter.jl as a workaround ? ```julia mdflatten(io, n::Any, parent) = print(io, n) mdconvert(n::Any, parent; kwargs...) = DOM.Node(string(n)) ```

Hi @yadongli, others have had this error too. I intend to spend some time testing things with Julia 0.6.3 in the next week.

Hi @wzard, Thanks for trying this out. The AWSLambda.jl module is part-way though some update work at present. I think you'll need to do `julia> Pkg.checkout("AWSLambda", "master")` do get the...

A couple of additional failures: ```julia # i_string_incomplete_surrogates_escape_valid.json Expression: jparse("[\"\\uD800\\uD800\\n\"]") == Any["\ud800\ud800\n"] Evaluated: Any["ﰀ\n"] == Any["\ud800\ud800\n"] # i_string_inverted_surrogates_U+1D11E.json Expression: jparse("[\"\\uDd1e\\uD834\"]") == Any["\udd1e\ud834"] Evaluated: Any["\U157434"] == Any["\udd1e\ud834"] ```

> I believe having the ability to work on your own machine (with your favorite OS / distribution), and then quickly summon some machines from a cluster (oder simply other...

+1 It would be useful to be able to prevent BinDeps from using yum. I currently have to do `chmod 000 /usr/bin/yum` before running mu Julia build script when building...