Ok now I am confused. Where can I find the "rules" for how this works?
if I do
line.
.
line.
it changes it to
line..
line.
It does the same thing if I use a dash
line.
-
line.
it outputs
line.-
line.
why?
so I thought maybe it has to be a letter
so I replace the - with break
so
line.
break
line.
but it STILL balks and gives me
line.break
line.
its as if it KNOWS I am trying to trick it and its laughing at me. Ok not really but what am I missing here?
if
line.
break
equals
line.break
why does
line.
line.
becomes
line.
line.
instead of
line.line.
? is there a good url for "what" its doing so I can learn the rules and how to work within them?
|