Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chifisource/olivedefaults.jl
olive extension starter-pack!
https://github.com/chifisource/olivedefaults.jl
data-science julia jupyter-notebook notebook notebook-jupyter olive toolips webdevelopment
Last synced: 7 days ago
JSON representation
olive extension starter-pack!
- Host: GitHub
- URL: https://github.com/chifisource/olivedefaults.jl
- Owner: ChifiSource
- License: mit
- Created: 2022-11-10T10:08:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-17T20:25:51.000Z (about 1 year ago)
- Last Synced: 2023-10-17T21:36:19.179Z (about 1 year ago)
- Topics: data-science, julia, jupyter-notebook, notebook, notebook-jupyter, olive, toolips, webdevelopment
- Language: Julia
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
###### Some default extensions for the [Olive](https://github.com/ChifiSource/Olive.jl) notebook editor.
---
This package contains a number of default extensions. In order to load a given extension, simply use `using` on the module.
```julia
using OliveDefaults: Styler
```
Add the code above to your `olive.jl` home file after adding `OliveDefaults`, for more information checkout [installing extensions](https://github.com/ChifiSource/Olive.jl#installing-extensions).---
###### styler
The styler extension allows the end-user to create and load their own stylesheets! This allows for an easy way to customize the way Olive looks, especially when it comes to color.
```julia
using OliveDefaults: Styler
```
###### docbrowser
The docbrowser creates pages of module documentation for every name defined within the current notebook. What this means is that we can browse docstrings in Markdown based on what package they are from.
```julia
using OliveDefaults: DocBrowser
```
###### autocomplete
The autocomplete module does exactly what one might expect -- this package adds autocomplete with spacebar presses.
```julia
using OliveDefaults: AutoComplete
```