Paragraph spacing not working in Edit Mode

I have tried the following snippet code:

.markdown-preview-view br {
    content: '';
    display: block;
    margin-top: 10px;
.CodeMirror pre.CodeMirror-line {
  padding-bottom: 10px;
}

The issue is that it only adds paragraph spacing in the Preview Mode but not the Edit Mode.

[This is my first time here, please pardon my ignorance.]

Welcome!

This?

.markdown-source-view.mod-cm6 .cm-line {
  padding-bottom: 10px;
}
2 Likes

I guess it doesn’t matter since you’re seeing some effect, but you forgot to close the closing bracket for .markdown-preview-view br.

1 Like

You’re a saint! Mere words cannot describe how thankful I am.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.