Jürgen Fuhrmann
Jürgen Fuhrmann
Just to add this idea to have a more generic cell layout: it might be interesting to have __floating cells__ (or however you would call them): these would e.g. stay...
Ok will see if I find time for the PR during the weekend. For the "old behavior": probably yes, just seeing stdout in the console. I think this is also...
I didn't have the time to make a PR yet for this, but my favorite would be something around the way it works in PlutoUI (the with_terminal() thing): https://github.com/JuliaPluto/PlutoUI.jl/blob/3e3e7c68034978c3db8581ac3f1cf7af4817a901/src/TerminalNotebook.jl#L97 (Disclaimer:...
There will be more requests like that... May be there should be an API to control these aspects of the layout according to the user's taste ? See https://julialang.zulipchat.com/#narrow/stream/243342-pluto.2Ejl/topic/manipulating.20log.20output/near/293706605
It seems that the problem is known over there: https://github.com/plotly/plotly.js/issues/4563
FYI: https://github.com/plotly/plotly.js/pull/6073
In a similar spirit I would like to have this option for running cells one-by one after loading when teaching based on a-priori prepared notebooks. Another thing nice to have...
> About automatically hiding markdown: I don't this is necessary when you write your notebooks inside Pluto, but in your case ([#132 (comment)](https://github.com/fonsp/Pluto.jl/issues/132#issuecomment-675764316)), it can be done as part of...
Ok but with this, once I run the first cell, all dependants are triggered. I tried out ```` foldedcells=Array{Cell,1}(undef,0) for cell in nb.cells if cell.code_folded push!(foldedcells,cell) end end println("run folded...
On Mon, 14 Sep 2020 22:56:11 +0200, Fons van der Plas wrote: > > (I'll point out that you can use ; as the last character of a cell to...