Skip to content

Commit

Permalink
Fix #142 , fix #121 , fix #158
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Dec 10, 2021
1 parent 0e37d3c commit c5506b2
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Manifest.toml
.DS_Store
docs/build
14 changes: 14 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using Documenter, PlutoUI

# i can't convice Documenter.jl to stop printing `PlutoUI.BuiltinsNotebook.Slider`, etc, so here is a nasty override:
Base.show(io::IO, m::Module) =
if parentmodule(m) === PlutoUI
write(io, "PlutoUI")
else
write(io, nameof(m))
end

makedocs(;
sitename = "PlutoUI",
modules = [PlutoUI]
)
82 changes: 82 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# PlutoUI.jl

![](https://media.giphy.com/media/l3vRfDn9ca5PVkHv2/giphy.gif)


```@meta
CurrentModule = PlutoUI
```

# Essentials

## Number inputs
```@docs
Slider
NumberField
Scrubbable
# RangeSlider
```

## String inputs
```@docs
TextField
PasswordField
ColorStringPicker
DateField
TimeField
```

## Selecting
```@docs
Radio
Select
MultiSelect
MultiCheckBox
```

## Clicky click
```@docs
CheckBox
Button
CounterButton
LabelButton
```




# Display helpers
```@docs
TableOfContents
br
Resource
LocalResource
```

## Terminal addiction
```@docs
Print
Dump
with_terminal
```

## Advanced IO control
```@docs
Show
WithIOContext
# as_html
# as_mime
# as_png
# as_svg
# as_text
```


# Special inputs


```@docs
FilePicker
DownloadButton
# Clock
```

0 comments on commit c5506b2

Please sign in to comment.