Skip to content

Instantly share code, notes, and snippets.

@sykwer
Created December 8, 2017 13:55
Show Gist options
  • Save sykwer/a8aba4f3a456cd509d966c1e165e5474 to your computer and use it in GitHub Desktop.
Save sykwer/a8aba4f3a456cd509d966c1e165e5474 to your computer and use it in GitHub Desktop.
In contenteEditable div, wrap row by p tag when press enter key.
const node = document.getElementById("contenteditable-id")
node.addEventListener("keypress", (e) => {
if (e.keyCode === 13) {
document.execCommand("formatBlock", false, "p")
}
})
// Wrap by h2 tag
// document.execCommand("formatBlock", false, "h2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment