I want to add emmet to my html file. So basically I have a div with the contenteditable attribute set to true and I want to be able to use emmet in it. Is there a way? Thanks
CodePudding user response:
Do you mean to use Emmet in your editor/IDE? Emmet is an extension to common editors to help make writing HTML & CSS easier.
CodePudding user response:
Do you mean to add emmet to the editable div? If so, that is not possible. The contenteditable
attribute just provides WYSIWYG (What You See Is What You Get) experience by providing in-browser rich-text.
Emmet hover is a set of plugins in editors to improve the coding workflow.
You could check here to see more about the contenteditable
attribute