Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/therustmonk/elm-ace

Ace Editor component for Elm
https://github.com/therustmonk/elm-ace

ace elm elm-ui

Last synced: 1 day ago
JSON representation

Ace Editor component for Elm

Awesome Lists containing this project

README

        

# Ace in Elm

This package is for Ace component rendering. It is based on the [ace][] project.

[ace]: https://github.com/ajaxorg/ace

## Basic Usage

```elm
content : Html msg
content =
Ace.toHtml
[ Ace.theme "monokai"
, Ace.mode "lua"
, Ace.value ""
] []
```

Important: This library don't load any `ace` library and you should add it youself in the `index.html`.