I'm trying to make symbols italic, both in front and inside a bracket. So I wrote *foo*[*bar* + 1]. The system renders this as “foo[*bar* + 1]”, which at the time of this writing means “foo[*bar* + 1]” (I hope this latter rendering will remain unchanged over time).
I tried some alternatives. The input
1. *foo*[*bar* + 1]
2. foo[*bar* + 1]
3. *foo[*bar* + 1]
4. *foo*(*bar* + 1)
5. *foo*{*bar* + 1}
6. *foo*<*bar* + 1>
7. *foo*[<em>bar</em> + 1]
renders like this:
- foo[*bar* + 1]
- foo[bar + 1]
- *foo[bar + 1]
- foo(*bar* + 1)
- foo{*bar* + 1}
- foo<bar + 1>
- foo[bar + 1]
So either use of italics, immediately before or immediately inside the bracket, works well enough. It's only when they both coincide that things break down. Could be due to regular expression matching, that the [ already matched at the end of one italic span, and therefore won't match at the beginning of the next. round parentheses are affected as well, as are curly braces. Angled braces, however, appear not to suffer from this. Perhaps the regular expression is operating on the < version of the text?
Any chance of fixing this inconsistency?