Is there a built-in code editor for Elm?

I want to have a code editor widget like CodeMirror or Ace in my Elm webpage. Unfortunately, CodeMirror and Ace do not work with Elm as they modify the DOM (at least my understanding of why they do not work).

I need something, at least better than <textarea>for students, to send the code. And we display the code. Just automatic indentation and syntax highlighting at the moment.

+4
source share
1 answer

I’m not sure what it is, but I’ve heard a lot of good things about Ellie . Another consideration might be the Monico Editor , which, I believe, served as the basis for the Microsoft VSCode product, as well as the code editor built into some parts of Microsoft Azure.

0
source

Source: https://habr.com/ru/post/1663684/


All Articles