We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fafab commit 3b32570Copy full SHA for 3b32570
src/code-editor.js
@@ -43,6 +43,7 @@ export default Base.extend({
43
el = document.createElement("code");
44
el.setAttribute("class", language_class);
45
el.setAttribute("contenteditable", "");
46
+ el.style.display = "block";
47
el.textContent = unescaped_html;
48
pre_el.append(el);
49
this.el.parentNode.insertBefore(pre_el, this.el);
0 commit comments