OliveMarkdown
provides Olive with the ability to read and save markdown (.md
) files from regular Olive
cells.
- Regular
Olive
output:
"""# Toolips Components
`Toolips` Components are composable, let's take a look at some code which demonstrates how to use these Components!
"""
#==|||==#
using Toolips
#==output[code]
==#
#==|||==#
OliveMarkdown
export output:
# Toolips Components
`Toolips` Components are composable, let's take a look at some code which demonstrates how to use these Components!
```julia
using Toolips
```julia
```output
Nothing
```output
To add OliveMarkdown
, either load it before starting Olive
or add OliveMarkdown
to your olive
home. To learn more, check out installing extensions.
using Pkg
Pkg.add("OliveMarkdown")
# unstable?
Pkg.add("OliveMarkdown", rev = "Unstable")
# start headless example:
using OliveMarkdown; using Olive; Olive.start(headless = true)