Hide the comment formatting syntax in Live Preview

Problem

Currently, comment formatting syntax (%%) – unlike any other formatting syntax – is displayed in Live Preview.

Proposed solution

The suggestion is to hide comment formatting syntax in Live Preview, just like any other formatting syntax.

Current workaround

CSS Snippet:

div:not(.cm-active) > .cm-comment-start,
div:not(.cm-active) > .cm-comment-end {
	display: none;
}

Related feature requests