I have some XML I'm generating with {}
characters, which are of course used for substitution.
It's hard to find any info on this: MDC is usually great documentation, but it doesn't mention anything about how to put brace literals in an E4X expression.
I finally found someone who had an answer: escape {
}
as {
}
. But it's really awkward to use. Is there any other way?