I just bumped into an issue that rendered a whole section of Flashmagazine.com useless. Anywhere there was a code snippet showing array access, the automatic pmCode turned:
somearray[i] = something;
into this:
somearray<i> = something;
Needless to say - every tutorial using a for-loop and a variable named “i” to iterate over an array displayed half the page in italics and the code broke… It is quite common to use the letter “i”, though it’s often considered bad practice as well. The point is really that it’s no good that this is enabled by default for absolutely any Weblog field. A global on/off that defaults to “off” would be wise, though a default to “on” is probably preferred not to break existing installs.
Robin pointed me to a workaround in this thread, but a permanent fix would be better.
J
