Earlier quoted context omitted.
I think two spaces makes more sense as an input mechanism, although the ship has sailed so it's no longer possible. That way the document generator can tell the difference between periods that are inside sentences, and those which end sentences. When using one space everywhere in the input, the document generator has to guess, and will sometimes guess wrong. That's why HTML doesn't, and can't, do that kind of intelli…
I mean arguably then we would want a totally different character for end of sentence and not two spaces in a row. I think modern tools are smart enough to properly space "Mr. Foo" v."I was sad. John was happy." and if not you can always manually fix the spacing edge cases yourself without modifying the text.
Microsoft Word now flags double spaces after a period as errors
111–120 of 270 posts
Re: Microsoft Word now flags double spaces after a period as errors
#112Interesting thing is, living in Europe, AFAIR I never heard about "use two spaces" rule until now (even if in a long monospace plaintext, I might have subconsciously used it sometimes to disambiguate). If I saw that in a Word document, however, I would have thought the author was a technically-illiterate person who puts extra spaces around commas, quotes, parentheses etc. or uses 10 spaces instead of 1 tab for indent…
Re: Microsoft Word now flags double spaces after a period as errors
#113I found these two thoughtful Wikipedia articles give an interesting background. I didn't know Vi and Emacs used to recognise double spacing as an end-of-sentence navigation. https://en.wikipedia.org/wiki/Sentence_spacing https://en.wikipedia.org/wiki/Sentence_spacing_in_digital_me...
Re: Microsoft Word now flags double spaces after a period as errors
#114It makes me sad that the least technical users have to use the most primitive software tooling. Something that programmers never think about (because they are best equipped to program their own programming tools) is apparently something that results in national studies and extremely snide articles because nobody will make good tools for them that end the problem once and for all.
Re: Microsoft Word now flags double spaces after a period as errors
#115I try to explain to people that punctuation like "'" and "." is overloaded, and the real point of the second space is to disambiuguate. They just don't get it, and perhaps won't understand the problem until it kicks them in the shin. The appropriate counterattack might be to introduce some coding and just show how gnarly sentences are to process as a result.
Re: Microsoft Word now flags double spaces after a period as errors
#116Interesting thing is, living in Europe, AFAIR I never heard about "use two spaces" rule until now (even if in a long monospace plaintext, I might have subconsciously used it sometimes to disambiguate). If I saw that in a Word document, however, I would have thought the author was a technically-illiterate person who puts extra spaces around commas, quotes, parentheses etc. or uses 10 spaces instead of 1 tab for indent…
Re: Microsoft Word now flags double spaces after a period as errors
#117Interesting thing is, living in Europe, AFAIR I never heard about "use two spaces" rule until now (even if in a long monospace plaintext, I might have subconsciously used it sometimes to disambiguate). If I saw that in a Word document, however, I would have thought the author was a technically-illiterate person who puts extra spaces around commas, quotes, parentheses etc. or uses 10 spaces instead of 1 tab for indent…
Re: Microsoft Word now flags double spaces after a period as errors
#118Earlier quoted context omitted.
if you were going to do that, i think you should render two half width spaces rather than a full width and a zero width, so the cursor still moves naturally.
Excellent suggestion. How could I have forgotten about half-width spaces?
Re: Microsoft Word now flags double spaces after a period as errors
#119This may not seem like a big deal, but consider the effect that such an influential source of “correctness” can have on the general sense of what is correct. Spell checkers like Word’s are responsible for the “z” in British English being demonised. Once upon a time, according to linguist Gretchen McCullen, it was common in British English to use both z and s. But somewhere along the line, automated spell checkers cat…
I don't think that's right, or at least maybe not for the colonies. I grew up in New Zealand and my mother was very insistent that I spelled and spoke "Proper English", rather than American English. This was before Microsoft Word was popular and the source of truth for the English language, especially for my tech-illiterate mother. She also didn't like me using slang, especially the Kiwi tendency to say "sweet as" an…
Re: Microsoft Word now flags double spaces after a period as errors
#120One thing that's nice about being a programmer is that I haven't thought about any mechanics of text formatting for many years. When I save a file, it just gets reformatted according to rules that were set up exactly once. I have no idea whether or not I use spaces or tabs, or whether there are semicolons at the end of lines, or whether it's "} else {" or "}\nelse {". It makes me sad that the least technical users ha…
You never read your own code?