- Joined
- Sep 23, 2014
- Messages
- 1,287
button to increase lineheight or shorten paragraphs and/or break-up run-on sentences in text editor
Hi,
People seem to prefer short paragraphs, as in 3-5 sentences, around 50 words or so (definitely less than 100 ).
People find it easier to read than paragraphs over 100 words or 200 words (over 5 sentences).
Moderators seem to not like when users complain to other users about not punching the newline button more frequently.
Technical solution is easy, offer some buttons/javascript for readers/writers.
For readers , since bladeforums already uses jquery, use this bookmarklet/button which increase the spacing between lines of text (i've tested this it works)
A similar button/javascript can be added to the for textarea/text editor/create-thread/add-reply to insert newlines for people who write long paragraphs .
Or it doesn't have to be a button/javascript a writer has to click,
the advanced editor could simply
detect when a paragraphs is too long
and automatically insert newlines as needed.
Thanks
Hi,
People seem to prefer short paragraphs, as in 3-5 sentences, around 50 words or so (definitely less than 100 ).
People find it easier to read than paragraphs over 100 words or 200 words (over 5 sentences).
Moderators seem to not like when users complain to other users about not punching the newline button more frequently.
Technical solution is easy, offer some buttons/javascript for readers/writers.
For readers , since bladeforums already uses jquery, use this bookmarklet/button which increase the spacing between lines of text (i've tested this it works)
Code:
javascript:(function(){
$('blockquote.messageText').css({'line-height':'3'});
})()
A similar button/javascript can be added to the for textarea/text editor/create-thread/add-reply to insert newlines for people who write long paragraphs .
Or it doesn't have to be a button/javascript a writer has to click,
the advanced editor could simply
detect when a paragraphs is too long
and automatically insert newlines as needed.
Thanks