2009/9/11 Viktor Štujber <[email protected]>: > Hello. I noticed that libxslt errors out if I try to use a > single-quoted string literal with a single-qoute (') or ' inside > it. I know it can be worked around using a temporary variable to store > the literal, however I'm curious whether this issue will be resolved > someday, or whether it is 'a feature'.
Your attached example is an error by the spec, you can instead write it like: <xsl:value-of select=""Hello, I'm a literal with an apostrophe inside.""/> or: <xsl:value-of select='"Hello, I'm a literal with an apostrophe inside."'/> Martin _______________________________________________ xslt mailing list, project page http://xmlsoft.org/XSLT/ [email protected] http://mail.gnome.org/mailman/listinfo/xslt
