Fons van der Plas

Results 662 comments of Fons van der Plas

How about something more general: a `style` keyword argument, that can be set to `(width="100%",)` for full width? See https://juliapluto.github.io/HypertextLiteral.jl/stable/attribute/

Another option is to add a new element: `ToggleButton`, which looks like a button, but feels like a checkbox

But that's reactivity 😅 I'll comment more on the other issue

https://github.com/fonsp/PlutoUI.jl/issues/37#issuecomment-695217352

@rapus95 It's a cool idea, but if you think about, it does not work with the way you write interactivity in Pluto. The cool thing about Pluto is that, instead...

```julia @bind num_clicks Button() ``` ```julia if num_clicks > 0 ... end ```

I added `CounterButton` in PlutoUI 0.7.16 which does https://github.com/fonsp/PlutoUI.jl/issues/38#issuecomment-818532913 In PlutoUI 0.8.0 I will `CounterButton` the default `Button`.

Hwo about this? ```julia pagebreak() = html"" ```

I implemented this here: https://github.com/fonsp/Pluto.jl/issues/297#issuecomment-759747014 We can add it to PlutoUI after some feedback