From 927ab50ac6702e74bb1949b6a0476c6a545ff144 Mon Sep 17 00:00:00 2001 From: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com> Date: Fri, 5 Jan 2024 10:43:47 +0530 Subject: [PATCH] fix: removed backticks in inline code blocks --- packages/editor/core/src/styles/editor.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/editor/core/src/styles/editor.css b/packages/editor/core/src/styles/editor.css index 86822664b..b0d2a1021 100644 --- a/packages/editor/core/src/styles/editor.css +++ b/packages/editor/core/src/styles/editor.css @@ -12,6 +12,11 @@ display: none; } +.ProseMirror code::before, +.ProseMirror code::after { + display: none; +} + .ProseMirror .is-empty::before { content: attr(data-placeholder); float: left;