Skip to content Skip to sidebar Skip to footer

How To Add Emmet Support In Ace Js Code Editor?

I am trying to embed ace code editor in my project. I am initializing my code editor with following code and now I want to enable emmet js features. I can see the ext-emmet.js exte

Solution 1:

See Lines 539-543 in ace demo.

Basically you need to load emmet source script (e.g. from https://github.com/nightwing/emmet-core/blob/master/emmet.js) and ace extension from /src/ext-emmet.js call require("ace/ext/emmet"); so that requirejs executes the script
And after that call editor.setOption("enableEmmet", true);.
See jsbin.com/ace-emmet/1/edit for live demo.


Post a Comment for "How To Add Emmet Support In Ace Js Code Editor?"