Forum Moderators: not2easy
I am struggling with this very simple issue.
How to do you set up the line length to 60 characters for articles?
Is there a simple free tool online or maybe some function in words which does that easily?
I tried with Word and with Notepad without success so far. When I fix a certain line length with Word and save it to txt file, it transforms the 3 or 4 lines paragraph into one line...
I would appreciate a couple of hints on how to do this effectively
Thanks
Francisco
For most Internet-based applications a specific width is set. Are you considering the fact that everyone may not be using the same font or font size? There are many other considerations.
I did at one time write a pretty simple application to do this in PHP but am not sure if you have the resources to make use of it. Could you be a bit more specific about your application?
Regards,
Auzer
if you want lines to be the same length, and don't want to use PHP, then the easiest thing to do is just to use the ­ character.
stick it in middle of long words, and the word will split at that point. for example, if the word 'shakespeare' comes near the end of a line and you write
shakes­peare
then it will appear on the screen as
shakes-
peare
just like it does in newspapers and books.
That's obviously CF-specific, but there are probably chunks of ASP and PHP code out there which do the same thing.