<div>I thought that that was not required. Just to be sure I had another look at the spec, and found out that it is indeed not required, *except* if the previous characters are "]]" ("for compatibility reasons"). In practice I can't imagine that any parser would have problems with ">", but I'll change it anyway to be fully conformant even in this special case.</div>

<div> </div>
<div>Regards,</div>
<div>Willem <br><br></div>
<div class="gmail_quote">On Sat, Jun 21, 2008 at 4:50 PM, Anders Nygren <<a href="mailto:anders.nygren@gmail.com">anders.nygren@gmail.com</a>> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Hi<br>erlsom:write does not encode ">" to "&gt;"<br><br>this patch fixes that.<br>
<br>/Anders<br><br>Index: lib/erlsom/src/erlsom_write.erl<br>===================================================================<br>--- lib/erlsom/src/erlsom_write.erl     (revision 1051)<br>+++ lib/erlsom/src/erlsom_write.erl     (working copy)<br>
@@ -648,6 +648,7 @@<br> escapeChar(38) -> "&amp;";<br> escapeChar(34) -> "&quot;";<br> escapeChar(60) -> "&lt;";<br>+escapeChar(62) -> "&gt;";<br> escapeChar(Char) -> Char.<br>
<br> decodeIfRequired(Text) when is_binary(Text) -><br>_______________________________________________<br>erlang-questions mailing list<br><a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br></blockquote></div><br>