Option to Add or Remove Line Spacing between each line of text
It would be useful if users could add or remove line spacing between lines of text in the content area of a page, similar to the options available in Microsoft Word.
In Word, you can highlight text, select the 'Line and Paragraph Spacing' option under the Home tab, and then choose 'Remove Space After Paragraph'.
When you copy this text from Word and paste it into the content area of the website using SHIFT + CTRL + V, the lines of text will not have any spaces between them.
The HTML source will look like this:
<p> </p>
<p style="margin-left:0cm; margin-right:0cm">example line 1</p>
<p style="margin-left:0cm; margin-right:0cm">example line 2</p>
<p style="margin-left:0cm; margin-right:0cm">example line 3</p>
<p> </p>
However, if you paste the text without holding SHIFT, or if you manually type text into the content area, there will be spaces between each line of text, and the HTML source will look like this:
<p> </p>
<p>example line 1<br />
example line 2<br />
example line 3</p>
<p> </p>
Adding an option to control line spacing in the EDIT menu, next to the text alignment options, would be a useful feature.