Thomas Christensen

Results 50 issues of Thomas Christensen

I may be misunderstanding or assuming more of the `tf=markdown` option than is intended, but I had been hoping to use this option to easily generate files with *aligned* markdown-formatted...

I was expecting that `AnsiTextCell` would behave somewhat like a "minipage" in LaTeX: i.e. effectively as a rectangular box that is plugged in as an element of the table and...

It'd be neat if highlighting could be defined for the data supplied in the `header` and `row_names` keyword arguments. At present, the only way to achieve this is to put...

Right now, we can set the size of a plot by specifying `width` and `height` in `layout` which will then get queried by [`display_blink`](https://github.com/JuliaPlots/PlotlyJS.jl/blob/256f8f3a615c84f8c89894c3eea7be9eb2e907e3/src/display.jl#L164-L168) to figure out what the appropriate...

In trying to build on Windows 10, in Matlab R2017a, with the MinGW64 compiler I get the following error when running `jl.config` (after specifying location of julia executable): #### Error...

https://github.com/FermiQC/Fermi.jl/blob/721b55fe513cda2c79e5773bf950f00caeb66f89/src/Core/Molecule.jl#L64 I was browsing your repo and noticed that the `Atom` typed defined in Molecules.jl is parametric in `{I,F}`: but here, this parametric dependence is not accounted for. As a...

When a glow or stroke effect is applied to a `text` object, it seems to apply to each letter in such a way that the stroke of one letter can...

To reproduce (loaded with Revise and current Pkg.jl master): ```jl julia> using SnoopCompileCore julia> invalidations = @snoopr using StaticArrays; julia> using SnoopCompile, Cthulhu julia> trees = invalidation_trees(invalidations) julia> mi =...

Implemented the change I suggested in #100 and added the two corresponding tests.

I expect the below to produce `"foobarbaz"` - but it produces `"foo bar baz"`: ```jl text(parsehtml("foobarbaz").root) ``` The motivating case was: ```jl text(parsehtml("MoSe2").root) ``` which produces `"MoSe 2"` rather than...