The return key adds two lines instead of one. Maybe this is intended behavior, but I personally find it very annoying, and would like to turn it off if possible.
Steps to replicate:
Enter the rich text editor
Type "foo"
Press enter
Type "bar"
Return to the regular editor
You will see the following:
foo
bar
Instead of the expected:
foo
bar
This question is a duplicate of this, but since it is closed and has no answers...
What does it mean in the context of a rich text editor? A new line is a new paragraph - in print you'll never see two lines right next to each others, unless they are within the same paragraph, or perhaps if they are bullet points.
In Markdown, two lines like this don't mean much either. Some viewers will reflow the text and make it a paragraph, others will convert to a hard break, but there's ambiguity anyway. That's why I wonder what's the goal.
The goal is to control the spacing. "A new line is a new paragraph" : My notes aren't formal print : I often use spacing to delineate ideas, sections, etc. I suppose I should probably change my habits to use H1/2/3, or bolded section headers, etc.