Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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!

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
```