quote:
Originally posted by Jellings
would it be possible to make it capitalise the first word when a new line is started?
Try change
code:
if (isin(sentences[i-1].charAt(sentences[i-1].length - 1), ".?!"))
to
code:
if (isin(sentences[i-1].charAt(sentences[i-1].length - 1), ".?!\n"))
Not sure if it'll work though.