Mo-Gul

Results 71 comments of Mo-Gul

@hmenke, and for your information. Under Win7 `flock` isn't present. It also doesn't seem to be available in [MinGW](http://www.mingw.org/). Any ideas for a counter solution working under Windows? That's why...

> 1. No, that is not the only problem. BTW, `setup code` does the same thing in `extract.lua` as putting it into the `pre` key of every example. There are...

For the record: I have written a PowerShell script myself to have parallel processing of the extracted `codeexample`s **and** having a counter. It works with PowerShell v5.1 available [here](https://www.microsoft.com/en-us/download/details.aspx?id=54616). ```powershell...

@hmenke, it seems that there are even more (code)examples in the (Lua) documentation. Unfortunately they have another syntax. Here an example. https://github.com/pgf-tikz/pgf/blob/a927d72a9fbfe40a38e92331513e6c0b35c8a94f/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/doc.lua#L94-L101 I guess you will easily be able to...

@hmenke, I have worked through the `codeexample`s and `example`(s) in the Lua part of the documentation as well now. Regarding the `example`s which need to have a `preamble` option I...

The mentioned issues and pull requests are right, thank you. While the last two could already be merged, the first one will still take a while I guess (as is...

@a-is you are right, nowhere in the manual the definition of `graphicbackground` is given. But there are a lot of places in the manual where "information" is missing in examples....

I (personally) find this a good idea. Of course long-term users might still use the old syntax. But changing the remaining instances of the old syntax to the new one...

@empet, thank you for the hint how to make it work. A minor improvement to your solution to use `reshape(..., :, 1)` (which is mentioned at ), that is ```jl...

When you use `Layout` instead of `config` it seems to work (but don't ask me why). ```jl using PlotlyJS t = range(0, 2π, length = 100) p1 = scatter(x=t, y=cos.(t))...