https://github.com/chifisource/olivemarkdown.jl
Markdown editing for Olive.jl
https://github.com/chifisource/olivemarkdown.jl
Last synced: 3 months ago
JSON representation
Markdown editing for Olive.jl
- Host: GitHub
- URL: https://github.com/chifisource/olivemarkdown.jl
- Owner: ChifiSource
- License: mit
- Created: 2023-08-01T23:34:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-01T23:34:04.000Z (almost 3 years ago)
- Last Synced: 2025-03-22T12:30:04.613Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
`OliveMarkdown` provides [Olive](https://github.com/ChifiSource/Olive.jl) with the ability to read and save markdown (`.md`) files from regular `Olive` cells.
- Regular `Olive` output:
```julia
"""# 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:
```markdown
# 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
```
### adding
To add `OliveMarkdown`, either load it before starting `Olive` or add `OliveMarkdown` to your `olive` home. To learn more, check out [installing extensions](https://chifidocs.com/olive/Olive/installing-extensions).
```julia
using Pkg
Pkg.add("OliveMarkdown")
# unstable?
Pkg.add("OliveMarkdown", rev = "Unstable")
```
```julia
# start headless example:
using OliveMarkdown; using Olive; Olive.start(headless = true)
```